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

html {
    scroll-behavior: smooth;
}


/* Instrument Serif for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.instrument-serif-regular {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.instrument-serif-regular-italic {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
    text-align: left;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
    text-align: left;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}   

body {
    line-height: 1.6;
    background-color: #fff1e6;
    font-family:"Instrument Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

p {
    font-size: 14px;
    color: #4C6A6C;
    text-align: left;
    font-family:'lucida console', monospace;
    line-height: 1.9;
}


/* Header & Video */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    text-align: center;
    width: 80%;
    padding: 2rem;
    border-radius: 10px;
}

.subtitle {
    font-size: 1rem;
    font-family:'lucida console', monospace;
    font-optical-sizing: auto;
    color: #fff;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 5%;
    align-items: center;
}

.logo {
    width: 64px;
    height: 64px;
}


.nav-links {
    display: none; /* Hidden on mobile by default */
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.insta-logo {
    width: 24px;
    height: 24px;
    display: block;
}

/* Layout Container */
.container {
    padding: 2rem 5%;
    max-width: 1440px;
    align-items: center;
    margin: 0 auto;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
}

.about-img {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 16px;
    text-align: left;
}

.title {
    margin-bottom: 2rem;
    color: #0f0802;
}

.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr; /* Single column for mobile */
}

.card {
    padding: 0;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.card .title,
.card p {
    padding: 0 2rem;
}

.card .title {
    padding-top: 2rem;
    margin-bottom: 1rem;
}

.card p {
    padding-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #657D7E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 8px;
}

.btn:hover {
    background: #4C6A6C;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: white;
}



/* Services */
.services {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.services h3 {
    text-align: start;
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #DFC8B8;
    padding: 2rem;
    border-radius: 16px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.contact-content {  
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.contact h3 {
    text-align: start;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}


.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4C6A6C;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'lucida console', monospace;
    font-size: 14px;
    color: #4C6A6C;
    background-color: rgb(255, 255, 255,.5);
    transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #657D7E;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'lucida console', monospace;
    font-size: 14px;
    color: #4C6A6C;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: normal;
}

.btn-submit {
    width: 100%;
    height: 56px;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin-top: 0;
}

.btn-submit:hover {
    background: #4C6A6C;
}

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-message {
    display: none;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-family: 'lucida console', monospace;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}



/* --- Responsive Breakpoints --- */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 85vh;
    }
    
    .hero-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .nav-links {
        display: flex; /* Show nav on larger screens */
    }

    .container {
        padding: 1rem 3%;
    }
    
    .about {
        padding: 0.5rem;
        gap: 0;
    }
    
    .about-text {
        padding: 1rem;
    }
    
    .navbar {
        padding: 1rem 3%;
    }
    
    .contact {
        padding: 1.5rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .nav-links {
        display: flex; /* Show nav on larger screens */
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about {
        flex-direction: row;
    }
    .about-img {
        flex: 1;
        min-height: auto;
    }
    .about-text {
        flex: 1;
    }
    .contact-wrapper {
        flex-direction: row;
    }
    .contact-form {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero {
        height: 100vh;
    }
}