body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
}

.home-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.home-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.home-logo {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 320px;
    width: 60%;
    z-index: 2;
    display: block;
}

.home-message {
    max-width: 672px;
    width: 80%;
    display: block;
    margin-bottom: 40px;
}

.home-menu-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
    max-width: 90%;
}

.home-menu-btn {
    background: white;
    color: #333;
    border: none;
    padding: 12px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.home-menu-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Project Section */
.project-section {
    min-height: 600px;
}

.project-image-container {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.project-content {
    background: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #b5a07f;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.project-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-image-container,
    .project-content {
        height: auto;
        min-height: 400px;
    }
    
    .project-content {
        padding: 40px 30px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .project-description {
        font-size: 14px;
    }
}

/* Single Section */
.single-section {
    width: 100%;
    position: relative;
}

.single-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-text-overlay {
    position: absolute;
    top: 50px;
    right: 100px;
    width: 30%;
    padding: 40px;
    color: white;
    text-align: center;
}

.single-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.single-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-image-container {
        height: 500px;
    }
    
    .single-text-overlay {
        top: 30px;
        right: 20px;
        width: 80%;
        padding: 20px;
    }
    
    .single-title {
        font-size: 18px;
    }
    
    .single-description {
        font-size: 12px;
    }
}

/* Dual Sections */
.dual-section {
    min-height: 450px;
}

.dual-image-container {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.dual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dual-content {
    background: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 450px;
}

.dual-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #b5a07f;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.dual-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for Dual Sections */
@media (max-width: 768px) {
    .dual-image-container,
    .dual-content {
        height: auto;
        min-height: 300px;
    }
    
    .dual-content {
        padding: 40px 30px;
    }
    
    .dual-title {
        font-size: 22px;
    }
    
    .dual-description {
        font-size: 14px;
    }
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 80px 0;
}

.gallery-container {
    margin: 0 65px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #b5a07f;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.gallery-main {
    margin-bottom: 30px;
}

.gallery-main-swiper {
    width: 100%;
    height: 600px;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    width: 100%;
}

.gallery-thumbs-swiper {
    width: 100%;
    height: 100px;
}

.gallery-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumb-image:hover,
.swiper-slide-thumb-active .gallery-thumb-image {
    opacity: 1;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-container {
        margin: 0 20px;
    }
    
    .gallery-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .gallery-main-swiper {
        height: 300px;
    }
    
    .gallery-thumbs-swiper {
        height: 80px;
    }
}

/* Text Section */
.text-section {
    background: white;
    padding: 50px 0 80px;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.text-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.text-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Text Section */
@media (max-width: 768px) {
    .text-section {
        padding: 60px 0;
    }
    
    .text-container {
        padding: 0 15px;
    }
    
    .text-paragraph {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Map Section */
.map-section {
    background: white;
    padding: 0;
}

.map-container {
    width: 100%;
    text-align: center;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
    .map-container {
        padding: 0;
    }
}

/* About Section */
.about-section {
    position: relative;
    background: white;
    padding: 80px 0;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 60px 40px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #b5a07f;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-text {
    text-align: center;
}

.about-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .about-paragraph {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.footer-form-container {
    width: 50%;
    padding-left: 80px;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #b5a07f;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #b5a07f;
}

.form-input::placeholder {
    color: #999;
}

.form-checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.form-checkbox {
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 15px 20px;
    background: #b5a07f;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #a08f6f;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-form-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 auto;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
} 