/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.hero {
    height: 90vh;
    background: url('https://pansy-studio.s3.us-west-2.amazonaws.com/hero.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero-logo {
    width: 300px; /* Doubled from 150px */
    height: auto;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #DB4A2B;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.hero p {
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.hero .btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero .btn.secondary {
    background: #DB4A2B; /* Orange background */
    border: 2px solid #DB4A2B;
    color: #fff; /* White text */
    transition: all 0.3s ease; /* Smooth transition */
}
.hero .btn.secondary:hover {
    background: #fff; /* White background */
    color: #DB4A2B; /* Orange text */
    border: 2px solid #DB4A2B; /* Maintain border */
}

/* Contact Section */
.contact {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
}
.contact h2 {
    color: #DB4A2B;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.contact p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.contact a {
    text-decoration: none;
    color: #DB4A2B; /* Same as Instagram link color */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.contact a:hover {
    color: #333; /* Darker color on hover */
}
.social-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #DB4A2B;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-top: 1rem;
}
.social-links a:hover {
    color: #333; /* Darker color on hover */
}
.social-links img.instagram-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        width: 70%;
        padding: 1.5rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-logo {
        width: 200px; /* Adjusted for tablets */
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        padding: 1rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-logo {
        width: 150px; /* Adjusted for mobile devices */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .hero .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .hero-logo {
        width: 120px; /* Further scaled down for very small screens */
    }
}