@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --midnight-navy: #0a1929;
    --warm-amber: #ffb84d;
    --slate-grey: #546e7a;
    --bronze: #cd7f32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--midnight-navy);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background-color: var(--midnight-navy);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--warm-amber);
    text-decoration: none;
    font-weight: 700;
    transition: text-shadow 0.3s ease;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--warm-amber);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--warm-amber);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

section {
    margin: 2rem 0;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 25, 41, 0.8), rgba(10, 25, 41, 0.8)), url('../images/hero-garden-lighting.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 2rem;
    margin-top:0 ;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--warm-amber);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.btn-primary {
    background-color: var(--warm-amber);
    color: var(--midnight-navy);
}

.btn-primary:hover {
    background-color: var(--bronze);
    box-shadow: 0 0 20px rgba(255, 184, 77, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--warm-amber);
    border: 2px solid var(--warm-amber);
}

.btn-secondary:hover {
    background-color: var(--warm-amber);
    color: var(--midnight-navy);
    box-shadow: 0 0 20px rgba(255, 184, 77, 0.6);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--warm-amber);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--bronze);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background-color: rgba(84, 110, 122, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 184, 77, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 77, 0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.form-container {
    max-width: 600px;
    margin: 2rem auto;
    background-color: rgba(84, 110, 122, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 184, 77, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--warm-amber);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--slate-grey);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-amber);
    box-shadow: 0 0 10px rgba(255, 184, 77, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

footer {
    background-color: rgba(10, 25, 41, 0.9);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 184, 77, 0.2);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--warm-amber);
    margin-bottom: 1rem;
    text-align: left;
}

.footer-column p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--warm-amber);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
    padding-left: 0.5rem;
}

.footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-policy-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-policy-links a:hover {
    color: var(--warm-amber);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
    padding-left: 0.5rem;
}

.copyright {
    color: var(--slate-grey);
    font-size: 0.9rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 184, 77, 0.1);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 25, 41, 0.98);
    padding: 2rem;
    border-top: 2px solid var(--warm-amber);
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-page {
    padding: 1rem;
}

.policy-page section {
    margin: 2rem 0;
}

.policy-page h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.policy-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    text-align: center;
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--warm-amber);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--midnight-navy);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        min-height: 40vh;
        padding: 2rem 1rem;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        hyphens: auto;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    p {
        font-size: 1rem;
        hyphens: auto;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .policy-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3 {
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-column p {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-policy-links {
        align-items: center;
    }
    
    .privacy-popup {
        padding: 1.5rem 1rem;
    }
    
    .privacy-popup-content {
        gap: 1rem;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
    }
    
    .privacy-popup-buttons .btn {
        width: 100%;
    }
}

@media (min-width: 769px) {
    section {
        hyphens: none;
    }
}

