@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --dark: #101813;
    --green: #132118;
    --green-2: #203126;
    --green-light: #51765e;
    --cream: #f4efe7;
    --white: #fffaf2;
    --gold: #b9915e;
    --gold-soft: #a89b8a;
    --text: #191d19;
    --test: #efe8dd;
   /* --header: rgba(244, 239, 231, .97);*/
    --header: rgba(244, 239, 231, .97);

}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* HEADER */

.gc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:  var(--header);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.gc-navbar {
    padding: 12px 5% 10px;
}

.gc-header-top {
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.gc-logo img {
    width: 300px;
    height: auto;
    display: block;
}

.gc-brand-center {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.gc-brand-center strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    letter-spacing: 18px;
    color: var(--green);
    font-weight: 500;
}

.gc-brand-center small {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 600;
}

.gc-header-btn {
    margin-top: 34px;
    background: var(--green-2);
    color: white !important;
    padding: 16px 34px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.gc-header-btn:hover {
    background: #a9804e;
    transform: translateY(-1px);
}

.gc-header-menu {
    display: flex;
    justify-content: center;
    gap: 52px;
}

.gc-header-menu a {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: .3s;
}

.gc-header-menu a:hover,
.gc-header-menu a.active {
    color: var(--gold);
    border-color: var(--gold);
}

.gc-toggler {
    border: none;
    background: transparent;
    font-size: 36px;
    color: var(--green);
}

.gc-toggler:focus {
    box-shadow: none;
}

/* BUTTONS */

.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: white !important;
    padding: 15px 34px;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
    transition: .3s;
}

.gc-btn:hover {
    background: #a9804e;
    transform: translateY(-1px);
}

.gc-btn-dark {
    background: var(--green);
}

.gc-btn-dark:hover {
    background: #1f3428;
}

/* MOBILE SIDEBAR */

.gc-mobile-sidebar {
    width: 320px;
    background: var(--green-2);
    color: white;
}

.gc-mobile-sidebar .offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.gc-mobile-sidebar .offcanvas-body {
    padding: 24px;
}

.gc-mobile-sidebar .nav-link {
    color: white;
    font-size: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gc-mobile-sidebar .nav-link:hover {
    color: var(--gold);
}

/* HERO */

.gc-hero {
    min-height: 830px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(9, 18, 14, .92) 0%,
            rgba(9, 18, 14, .82) 40%,
            rgba(9, 18, 14, .72) 50%,
            rgba(9, 18, 14, .08) 100%
        ),
        url('/storage/gallery/image1.jpeg');
    background-size:  auto;
    background-position: 100% 70%;
    background-repeat: no-repeat;
    
}


.gc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 6%;
    color: white;
}

.gc-line {
    display: block;
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.gc-hero h1 {
    max-width: 720px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 8vw, 104px);
    line-height: .93;
    text-transform: uppercase;
}

.gc-hero h1 span {
    color: var(--gold);
}

.gc-hero-script {
    position: relative;
    display: inline-block;
    margin-bottom: 36px;
    color: white;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
}

.gc-hero-script::after {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: -10px;
    height: 2px;
    background: var(--gold);
    transform: rotate(-1deg);
}

.gc-hero p {
    max-width: 560px;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, .9);
    font-size: 19px;
    line-height: 1.9;
}

/* VALUES */

.gc-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--test);
    /*background: var(--test);*/
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.gc-value {
    padding: 65px 30px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, .08);
}

.gc-value:last-child {
    border-right: 0;
}

.gc-value i {
    display: block;
    margin-bottom: 20px;
    color: var(--green-light);
    font-size: 54px;
}

.gc-value h3 {
    margin-bottom: 12px;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
        color: var(--green-2);
}

.gc-value p {
    max-width: 240px;
    margin: auto;
    color: var(--green-2);
    line-height: 1.8;
}

/* COMMON */

.gc-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gc-services h2,
.gc-about h2,
.gc-gallery-head h1,
.gc-gallery-head h2,
.gc-contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
}

.gc-about h2,
.gc-contact h2 {
    color: var(--cream);

}

.gc-services h2,
.gc-gallery-head h1,
.gc-gallery-head h2 {
    color: var(--green);
}

.gc-about-text p,
.gc-contact-info p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--cream);
}

.gc-about-text p,
.gc-contact-info p {
    color: var(--cream);
}

.gc-services-info p,{
    color: var(--green);
}

/* SERVICES */

.gc-services {
    display: grid;
    grid-template-columns: .85fr 1.35fr;
    gap: 60px;
    padding: 90px 6%;
    background: var(--cream);
}

.gc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gc-service-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.gc-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .82),
        rgba(0, 0, 0, .18)
    );
}

.gc-service-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px;
    color: white;
}

.gc-service-card-content h3 {
    margin: 0 0 12px;
    color: white;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
}

.gc-service-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.7;
}

/* ABOUT */

.gc-about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
/*    background: var(--white);*/
    background: var(--green);
   

}

.gc-about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.gc-about-text { 
    padding: 70px 8%;
     color: var(--cream)
}

/* CERTIFICATES */

.gc-certificates {
    padding: 90px 6%;
    /*background: white;*/
    background: var(--test);

}

.gc-certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gc-certificate-item {
    display: block;
    overflow: hidden;
    margin: 10px 0;
}

.gc-certificate-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: white;
    transition: .4s;
}

.gc-certificate-item:hover img {
    transform: scale(1.03);
}

/* GALLERY PREVIEW */

.gc-gallery-preview,
.gc-gallery-page {
    padding: 90px 6%;
    background: var(--test);
}

.gc-gallery-head {
    margin-bottom: 45px;
    text-align: center;
}

.gc-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gc-preview-item {
    height: 280px;
    overflow: hidden;
    display: block;
    background: var(--green);
}

.gc-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.gc-preview-item:hover img {
    transform: scale(1.08);
}

/* GALLERY CAROUSEL */

.gc-gallery-carousel {
    max-width: 1100px;
    margin: auto;
}

.gc-carousel-image {
    width: 100%;
    height: 78vh;
    object-fit: contain;
    background: #111;
}

.gc-carousel-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px 0;
}

.gc-carousel-thumbs button {
    flex: 0 0 110px;
    height: 76px;
    padding: 0;
    background: transparent;
    border: 2px solid transparent;
}

.gc-carousel-thumbs button.active {
    border-color: var(--gold);
}

.gc-carousel-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT */

.gc-contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    padding: 90px 6%;
    color: white;
    background:
        url('/storage/gallery/pngwing.com (23).png') right bottom / 30% auto no-repeat,
        radial-gradient(circle at right, rgba(185, 145, 94, .22), transparent 35%),
        var(--green);
}

.gc-contact ul {
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.gc-contact li {
    margin-bottom: 14px;
}

.gc-contact li i {
    margin-right: 10px;
    color: var(--gold);
}

.gc-contact-form input,
.gc-contact-form textarea {
    width: 100%;
    padding: 16px;
    color: white;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .25);
    outline: none;
}

.gc-contact-form textarea {
    min-height: 150px;
}

.gc-contact-form input::placeholder,
.gc-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, .7);
}

.gc-contact-form .is-invalid {
    border-color: #e74c3c;
}

/* FOOTER */

.gc-footer {
    /*background: var(--white);*/
    background: var(--test);

}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 36px 6%;
    align-items: center;
}

.gc-footer i {
    color: var(--gold);
    font-size: 26px;
}

.gc-footer p {
    margin: 0;
    line-height: 1.6;
}

.gc-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.gc-footer-social a {
    color: var(--green);
    font-weight: 600;
}

.gc-copy {
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .08);
    font-size: 14px;
     color: var(--green)
}
.gc-page {
    padding: 100px 0;
    background: var(--cream);
}

.gc-page-title {
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
}

.gc-page-content {
    max-width: 900px;
}

.gc-page-content h3 {
    margin: 42px 0 16px;
    font-size: 24px;
    color: var(--green);
}

.gc-page-content p {
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.gc-page-content a {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .gc-hero {
        min-height: calc(100vh - 132px);
        height: auto; 
        padding: 70px 0 80px;
        align-items: flex-start;
        background-size: cover;
        background-position: left center ;
    }

    .gc-hero-content {
        padding: 0 24px;
        margin-left: 0;
        width: 100%;
    }

    .gc-hero h1 {
        font-size: 62px;
        line-height: .92;
        margin-bottom: 14px;
    }

    .gc-hero-script {
        font-size: 52px;
        margin-bottom: 26px;
    }

    .gc-hero p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .gc-btn {
        padding: 14px 26px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {

  /*  .gc-hero {
       padding: 100px 0 55px;
    }*/

    .gc-hero h1 {
        font-size: 48px;
    }

    .gc-hero-script {
        font-size: 42px;
    }

    .gc-hero p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .gc-navbar {
        padding: 12px 22px;
    }

    .gc-header-top {
        min-height: 74px;
        align-items: center;
    }

    .gc-logo img {
        width: 110px;
    }

    .gc-brand-center {
        position: static;
        transform: none;
        margin-left: 14px;
        text-align: left;
    }

    .gc-brand-center strong {
        font-size: 24px;
        letter-spacing: 5px;
    }

    .gc-brand-center small {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .gc-header-btn {
        display: none;
    }

    .gc-hero {
        min-height: 78vh;
    }

    .gc-services,
    .gc-about,
    .gc-contact {
        grid-template-columns: 1fr;
    }

    .gc-services-grid,
    .gc-preview-grid,
    .gc-certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-about-image img {
        height: 460px;
    }

    .gc-contact {
        background:
            url('/storage/gallery/pngwing.com (23).png') right bottom / 70% auto no-repeat,
            var(--green);
    }

    .gc-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gc-brand-center strong {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .gc-brand-center small {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .gc-hero-content {
        margin: 0;
        padding: 60px 24px;
    }

    .gc-hero h1 {
        font-size: 52px;
    }

    .gc-hero-script {
        font-size: 38px;
    }

    .gc-values,
    .gc-services-grid,
    .gc-preview-grid,
    .gc-certificates-grid {
        grid-template-columns: 1fr;
    }

    .gc-value {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .gc-services,
    .gc-about-text,
    .gc-gallery-preview,
    .gc-gallery-page,
    .gc-contact,
    .gc-certificates {
        padding: 60px 24px;
    }

    .gc-preview-item {
        height: 230px;
    }

    .gc-carousel-image {
        height: 58vh;
    }

    .gc-certificate-item img {
        height: 320px;
    }
}