/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --primary-bg: #030303;
    --text-white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --shadow: rgba(0, 0, 0, 0.1) 0px 8px 25px 0px;
}

/* Fonts */
body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(3, 3, 3, 0.95);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 4px;
/*    color: var(--text-white);*/
    color: #ACACAC;
    text-decoration: none;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active{
    color: var(--text-white);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--text-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 200px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #000;
}

/* Section Styles */
section {
    padding: 100px 40px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2 {
    font-family: 'Cormorant', serif;
    margin-bottom: 30px;
}

h1 {
    font-size: 42px;
    text-align: center;
}

h2 {
    font-size: 28px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.services-grid-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.service-column {
    display: flex;
    flex-direction: column;
}

.service-item h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-item p {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    opacity: 0.9;
}

.services-section {
    position: relative;
    background-image: url('../kep-20.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .container h1{
    font-weight: 400;
    font-size: 64px;
    line-height: 83px;
}

.review-section {
    background-color: #fff;
    color: #000;
    padding: 0 40px;
}

.review-section h1 {
    font-size: 64px;
    font-weight: 400;
}

.review-section h1,
.review-section h2,
.review-section p {
    color: #000;
}



.contact-section {
    background-color: #fff;
    color: #000;
}

.contact-section h1 {
    font-size: 64px;
    font-weight: 400;
}

.contact-section h1,
.contact-section h2,
.contact-section p {
    color: #000;
}

/* Horizontal Line */
.hr-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary-bg);
    color: var(--text-white);
    padding: 12px 32px;
    border: 1px solid var(--primary-bg);
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.25px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    min-width: 192px;
    text-align: center;
}

.btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 30px 0px;
}

.contact-page {
    background-color: #fff;
    color: #000;
}

/*
.contact-page .logo,
.contact-page nav a {
    color: #000;
}

.contact-page nav a.active {
    color: #000;
}

.contact-page nav a.active::after {
    background-color: #000;
}
*/
.contact-page .menu-toggle span {
    background-color: #000;
}

.contact-section-container {
    padding-top: 140px;
}

.contact-section-container h1 {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-grid-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-separator {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 60px 0;
}

.image-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-page .form-group {
    margin-bottom: 30px;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    color: #000;
    padding: 10px 0;
    border-radius: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.contact-page .btn {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.contact-page .btn:hover {
    background-color: #333;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    max-width: 400px;
}

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

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

/* About Page Styles */
.about-page {
    background-color: #fff;
    color: #000;
}

.about-page header {
    background-color: rgba(3, 3, 3, 0.95);
}

.about-section {
    background-color: var(--primary-bg);
}

.about-section h1 {
    font-weight: 400;
    font-size: 64px;
}

.about-section-new {
    background-color: #fff;
    color: #000;
}

.about-section-new h1 {
    font-weight: 400;
    font-size: 64px;
    color: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-text-centered {
    text-align: center;
    margin-bottom: 60px;
}

.about-text-centered p {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.9;
    color: #000;
}

.about-image-centered {
    display: flex;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

.about-image-centered img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text p {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Price List Styles */

.section-pricelist {
    padding-top: 140px;
    background-color: var(--text-white);
    color: black;
    font-family: 'Cormorant', serif;
}

.price-list {
    max-width: 900px;
    margin: 20px auto 0;
}

.price-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.price-header h2 {
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 400;
}

.price {
    font-family: 'Merriweather', 'Merriweather-Fallback', serif ;
    font-size: 24px;
    font-weight: 600;
}

.price-details {
    font-family: 'Merriweather', serif;
    max-width: 700px;
    margin-top: 10px;
    opacity: 0.85;
    font-size: 20px;
}

.price-details p {
    margin-bottom: 8px;
}

.note-section {
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 8px;
    margin: 10px auto;
    text-align: left;
    font-size: 24px;
    font-weight: 200;
}

.note-section-top {
    text-align: center;
    font-weight: 400;
}


.note-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Cormorant', serif;
}

.note-section ul {
    list-style-position: inside;
    list-style-type:disc;
    opacity: 0.9;
}


.note-section li {
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Contact Form Styles */
.contact-form-section {
    width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Styles */
footer {
    background-color: #000;
    padding-top: 0;
}

.footer-map {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-content {
    padding: 40px;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    opacity: 0.7;
    font-size: 14px;
}

.footer-content a {
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    section {
        padding: 80px 30px;
    }

    .services-grid,
    .contact-grid {
        gap: 40px;
    }

    .about-content {
        gap: 50px;
    }

    .hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(3, 3, 3, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        padding: 40px;
    }

    nav ul.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .services-grid,
    .services-grid-three-col,
    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    .btn {
        min-width: 150px;
        font-size: 11px;
        padding: 10px 24px;
    }

    section {
        padding: 50px 20px;
    }
}
