* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --night-blue: #1a2332;
    --deep-blue: #0f1419;
    --star-yellow: #f4d03f;
    --accent-blue: #4a6fa5;
    --light-text: #e8e8e8;
    --dark-text: #2c3e50;
    --cyprus-green: #2d5016;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light-text);
    background-color: var(--deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--star-yellow);
    margin: 0;
}

.nav-brand .subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--light-text);
    opacity: 0.7;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--star-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--star-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 50%, #1a2840 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: stars 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes stars {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(15, 20, 25, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--star-yellow);
    text-shadow: 2px 2px 20px rgba(244, 208, 63, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--star-yellow);
    color: var(--deep-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    border: 2px solid var(--star-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--star-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

/* Collection Section */
.collection {
    padding: 6rem 0;
    background: var(--night-blue);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--star-yellow);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--deep-blue);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(244, 208, 63, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 208, 63, 0.2);
}

.gallery-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.starry-night {
    background-image: url('https://images.unsplash.com/photo-1549887534-1541e9326642?w=800&q=80');
}

.cypresses {
    background-image: url('https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?w=800&q=80');
}

.road-cypresses {
    background-image: url('https://images.unsplash.com/photo-1561214115-f2f134cc4912?w=800&q=80');
}

.irises {
    background-image: url('https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&q=80');
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    color: var(--star-yellow);
    font-weight: 500;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--deep-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--star-yellow);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-image {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1513364776144-60967b0f800f?w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--night-blue);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--deep-blue);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 5px;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--star-yellow);
}

.contact-form textarea {
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(244, 208, 63, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: var(--star-yellow);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--star-yellow);
    opacity: 1;
}

.footer-info {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
