:root {
    --dark-bg: #0f9399;
    --darker-bg: #121212;
    --accent: #ff6b6b;
    --text: #efe9e0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

body{
    background-color: var(--text);
    color: var(--text);
}

/* Navigation */
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transform: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section*/
.hero {
    margin-top: 100px;
    padding: 8rem 5%;
    background: linear-gradient(45deg, #2d3436, #1a1a1a);
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90, 0 100%);
}

.hero h1{
    font-size: 3.5rem;
    margin-top: 1.5rem;
    animation: fadeIn 1s ease-out;
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Products Scetion */
.products {
    padding: 5rem 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card{
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.2);
}

.product-image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(0%);
}

.product-card:hover .product-image{
    transform: scale(1.05);
    filter: grayscale(0%);
}

.product-info{
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.product-price{
    color: var(--accent);
    font-weight: 700px;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 5%;
    margin-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 3rem;
}

.footer-section h3{
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li{
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--text);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: var(--accent);
}

/* Animination */
@keyframes fadeIn {
    fraom { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: rotateY(0);}
}

@media (max-width: 768px) {
    .nav-links{
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}