/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 4rem 2rem 2rem;
    background: #F7EFE7 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 42px !important;  
    color: #2C3E50 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: bold !important;
    margin-bottom: 1rem;
    line-height: 1.1;
    max-width: 1000px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}


.hero-button {
    font-size: 20px !important;
    background-color: #D48245;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 500;
    text-decoration: none;   
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-button:hover {
    background-color: #E67E22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 130, 69, 0.3);
}

/* Phone Mockup */
.phone-mockup {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 15px 10px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen::before {
    content: '📱';
    font-size: 4rem;
    opacity: 0.3;
    color: #fff;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 36px !important;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        padding: 12px 8px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 32px !important;
        margin-bottom: 1rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-button {
        font-size: 18px !important;
        padding: 10px 20px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
        padding: 10px 6px;
        transform: rotateY(-2deg) rotateX(2deg);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px !important;
        margin-bottom: 0.8rem;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-button {
        font-size: 16px !important;
        padding: 8px 16px;
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
        padding: 8px 5px;
        transform: none;
    }
    
    .phone-frame:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 24px !important;
        margin-bottom: 0.8rem;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-button {
        font-size: 14px !important;
        padding: 6px 12px;
    }
} 