/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
    background-color: #faf9f7;
    line-height: 1.8;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.navbar-brand-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.nav-brand {
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #f0ecec;
    text-align: center;
    line-height: 1.3;
}

.navbar-menu-container {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
}

.navbar-menu-container .container {
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fffdfd; 
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
    opacity: 1;
    text-transform: uppercase;
}

.nav-menu a:hover {
    opacity: 1;
}

@media (max-width: 860px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.7rem;
    }

}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
    }

    .navbar-brand-container {
        position: relative;
        width: 100%;
        padding: 2rem 1rem;
        justify-content: center;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-menu-container {
        display: none;
        position: static;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
        width: 100%;
        padding: 0;
        order: 2;
    }

    .navbar-menu-container.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
    }

    .navbar-menu-container .container {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        width: 100%;
    }

}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    z-index: 1001;
}

.language-switcher a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.language-switcher a:hover {
    opacity: 1;
}

.language-switcher a.active {
    opacity: 1;
    font-weight: 600;
}

.language-switcher a.separator {
    color: #ffffff;
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 860px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 0.4rem;
        right: 1rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    display: flex;
    align-items: center;
    height: 100vh;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    background-color: #eceeee;
}

.hero-background {
    position: absolute;
    top: -105px;
    left: 0;
    width: 100%;
    height: calc(100% + 105px);
    z-index: 0;
    overflow: hidden;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 50%;
    padding: 4rem 2rem;
    display: none;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-weight: normal;
}

@media (max-width: 1170px) {
 
    .hero {
        overflow: visible;
    }

    .hero {
        height: 60vh;
        flex-direction: column;
        padding: 100px 0 0;
    }

    .hero-content {
        width: 100%;
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-background {
        position: absolute;
        top: -105px;
        width: 100%;
        height: calc(100% + 105px);
        order: -1;
    }
    
}

@media (max-width: 860px) {

    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

}

@media (max-width: 480px) {

    .hero {
        height: 40vh;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}


/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    border: 1px solid #2c2c2c;
    color: #2c2c2c;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.btn-primary {
    background-color: transparent;
}

.btn-primary:hover {
    background-color: #2c2c2c;
    color: #f8f7f5;
}

.btn-secondary {
    background-color: #2c2c2c;
    color: #f8f7f5;
    border-color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #f8f7f5;
    color: #2c2c2c;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story {
    padding: 6rem 0;
    background-color: #F7F4EF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
    font-weight: 400;
    text-align: center;
}

.story-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.9;
    padding: 6rem;
}

.story-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(to right, #d4af37, #c9a961);
    margin-top: 2rem;
}

.story-image {
    overflow: hidden;
    border-radius: 2px;
}

.story-image img {
    width: 50%;
    height: auto;
    display: block;
    right: -50px;
}


@media (max-width: 1170px) {
   
    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {

     .story {
        text-align: center;
        padding: 4rem;
    }

    .story-content h2 {
        margin-bottom: 0.5rem;
    }

    .story-content p {
        padding: 2rem;
        margin-bottom: 0.5rem;
    }

}

@media (max-width: 480px) {

    .story {
        text-align: center;
        padding: 1.5rem;
    }

    .story-content h2 {
        margin: 1rem;
    }

    .story-content p{
        padding: 0.5rem;
    }

}


/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
    padding: 6rem ;
    background-color: #faf9f7;
    background-image: url('../assets/images/portfolio-bg.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 249, 247, 0.7);
    pointer-events: none;
    z-index: 1;
}

.portfolio > * {
    position: relative;
    z-index: 2;
}

.portfolio h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    grid-auto-rows: 250px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 2px;
    grid-column: span 2;
}

.portfolio-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 4;
}

.portfolio-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item:nth-child(4) {
    grid-column: span 5;
    grid-row: span 3;
}

.portfolio-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 3;
}

.portfolio-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Tablet (iPad) - max-width: 860px */
@media (max-width: 860px) {
 
    .container {
        padding: 0 1rem;
    }
    
    .portfolio {
        padding: 1rem ;
        background-color: #faf9f7;
    }


    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        grid-auto-rows: 320px;
        border: solid 1px red;
    }

    .portfolio h2 {
        font-size: 2.8rem;
    }

    .portfolio-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 3;
    }

    .portfolio-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(4) {
        grid-column: span 5/6;
        grid-row: span 1/4;
    }

    .portfolio-item:nth-child(5) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(6) {
        grid-column: span 3/5;
        grid-row: span 3/4;
    }
    .portfolio-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-item:nth-child(2) {
        grid-column: span 2;
    }

    .portfolio-item:nth-child(3) {
        grid-column: span 2;
    }

    .portfolio-item:nth-child(4) {
        grid-column: span 2;
    }

    .portfolio-item:nth-child(5) {
        grid-column: span 2;
    }

    .portfolio-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }

}

/* Mobile - max-width: 480px */
@media (max-width: 480px) {

    .portfolio {
    text-align: center;
    padding: 4rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        grid-auto-rows: 400px;
    }

    .portfolio h2{
        font-size: 2.2rem;
    }

    .portfolio-item,
    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(3),
    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5),
    .portfolio-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 6rem 0;
    background-color: #F7F4EF;
}

.about-content {
    padding: 4rem;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 2rem;
    padding: 1rem;
    text-align: center;
}

@media (max-width: 860px) {

    .about {
        padding: 2rem 0;
    }

    .about-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .about {
        text-align: center;
        padding: 1rem;
    }

    .about-content {
        padding: 1rem;
    }

    .about-content p {
        padding: 0;
    }

}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,300px);
    justify-content: center;
    gap:30px;
}

.step{
    text-align:center;
}

.process {
    padding: 6rem 0;
    background-color: #faf9f7;
    margin-bottom: 6rem;
    margin-top: 1rem;
}

.process h2 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.number {
    font-size: 2.2rem;
}

.step p {
    text-align: center;
    margin-top: 30px;
}

.step h3 {
    font-weight: 600;
}


@media (max-width: 860px) {
  
    .process {
        padding: 2.5rem 0;
        margin: 3rem 0;
    }

    .process h2{
        font-size: 2.5rem;
    }

    .process-grid{
    grid-template-columns:repeat(4,160px);
    justify-content: center;
    gap:10px;
    }

      .process p {
        display: none;
    }

}

@media (max-width: 480px) {

    .process {
        padding: 0.5rem 0;
        margin: 3rem 0;
    }

    .process h2 {
        font-size: 2.2rem;
    }

    .process-grid{
    grid-template-columns:repeat(4,80px);
    justify-content: center;
    gap:10px;
    }

    .process p {
        display: none;
    }

    .number{
        font-size: 1.2rem;
    }

    .process h3 {
        font-size: 0.6rem;
    }
}



/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 8rem 0;
    background-color: #f5f1e8;
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #2c2c2c;
}

@media (max-width: 860px) {
 
    .contact h2 {
        font-size: 2.5rem;
    }

    .contact-content p {
        font-size: 1.7rem;
    }

}

@media (max-width: 480px) {
.contact {
    padding-bottom: 6.5rem;
    padding-top: 6rem;
}

.contact-content p {
    font-size: 1.3rem;
}

}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f1e8 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c2c2c;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
}

.about-main {
    padding: 6rem 0 8rem;
    background-color: #b4d9dc;
    flex: 1;
    display: flex;
    align-items: center;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.about-text-section p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 0.5rem;
    padding: 1rem;
}

.about-text-section {
    order: 1;
    text-align: left;
}

.about-image-section {
    order: 2;
    display: flex;
    justify-content: center;
}

.about-image-section img {
    width: 500px;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
    padding: 8rem 0;
    background-color: #f5f1e8;
}

.philosophy-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.philosophy-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #2c2c2c;
    color: #f8f7f5;
    padding: 2rem 0;
    font-size: 0.85rem;
    position: relative;
    margin-top: auto;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    text-align: left;
}

.footer-left p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-right {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-right p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-link {
    text-decoration: none;
    color: #f8f7f5;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.footer-link:hover {
    opacity: 1;
}

.flower-decoration {
    position: absolute;
    width: auto;
    opacity: 100%;
    pointer-events: none;
    z-index: 0;
    display: block;
}

.flower-decoration-right {
    right: -50px;
    height: 480px;
    bottom: 61px;
}

.flower-decoration-left {
    left: -60px;
    height: 450px;
    bottom: 50px;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    overflow: visible;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background-color: #f0ecec;
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1170px) {
    .footer {
        overflow: visible;
    }

    .flower-decoration-right {
        height: 390px;
        bottom: 68px;
    }

    .flower-decoration-left {
        height: 390px;
        bottom: 55px;
    }


    .collect-grid {
        grid-template-columns: 1fr 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 860px) {
  
    .footer {
        overflow: visible;        
        position: relative;
        z-index: 10;
        font-size: 0.75rem;
    }

    .footer-decoration {
        display: block;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 2rem;
    }

    .footer-left {
        grid-column: 1;
        text-align: left;
    }

    .footer-left p {
        margin: 0;
        font-size: 0.75rem;
    }

    .footer-links {
        grid-column: 3;
        justify-self: end;
    }

    .footer-right {
        grid-column: 2;
        justify-self: center;
        flex-direction: row;
        gap: 0.5rem;
    }

    .footer-right p {
        display: none;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .quote p {
        font-size: 1.25rem;
    }

    .collect-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 0.9rem;
    }

    .flower-decoration-right {
        height: 420px;
        right: -60px;
        bottom: 68px;
    }

    .flower-decoration-left {
        height: 420px;
        left: -80px;
        bottom: 60px;
    }
}

@media (max-width: 480px) {

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }


    .footer {
        overflow: visible;
        font-size: 1.1rem;
    }

    .footer-decoration {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        display: flex;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left {
        text-align: center;
        order: 3;
    }

    .footer-left p {
        font-size: 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        order: 1;
    }

    .footer-right {
        text-align: center;
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        order: 2;
    }

    .footer-right p {
        display: none;
        font-size: 1.1rem;
    }

    .footer-link {
        font-size: 1.1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .flower-decoration-right {
        height: 200px;
        right: 0px;
        bottom: 200px;
    }

    .flower-decoration-left {
        height: 200px;
        left: -20px;
        bottom:200px;
    }

/*ABOUT PAGE*/

    .about-main {
        padding: 3rem 0 4rem;
    }

    .about-main-grid {                  
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text-section {
        order: 1;
    }

    .about-text-section p {
        margin-bottom: 0.5rem;
    }

    .about-image-section {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .about-image-section img {
        width: 250px;
    }

}

/* ========================================
   COMING SOON SECTION
   ======================================== */
.coming-soon {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.coming-soon-content {
    padding: 4rem;
}

.coming-soon-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
}

@media (max-width: 1170px) {
    .coming-soon {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .coming-soon-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .coming-soon {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .coming-soon-content {
        padding: 2rem;
    }

    .coming-soon-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .coming-soon-content {
        padding: 1rem;
    }

    .coming-soon-content h1 {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
}

/* ========================================
   HELLO & QUOTE SECTION
   ======================================== */
.hello-quote-section {
    padding: 6rem 0 2.5rem 0;
    background-color: #f4f0e9;
}

.hello-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hello-section-content {
    padding-right: 2rem;
    padding-left: 4rem;
}

.hello-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hello-image {
    overflow: hidden;
    border-radius: 2px;
}

.hello-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hello-content h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 5rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: normal;
    text-transform: none;
}

.hello-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.quote-section-content {
    display: flex;
    align-items: center;
    padding-left: 2rem;
    padding-right: 4rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.quote-image {
    overflow: hidden;
    border-radius: 2px;
    max-width: 150px;
}

.quote-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quote-content {
    width: 100%;
    margin-left: -7rem;
}

.quote-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.8;
}

@media (max-width: 1170px) {
    .hello-quote-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hello-section-content {
        padding-right: 0;
        padding-left: 0;
    }

    .quote-section-content {
        padding-left: 0;
        padding-right: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center;
        justify-content: center;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        justify-items: center;
    }

    .quote-content {
        margin-left: 0;
    }

    .quote-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 860px) {
    .hello-quote-section {
        padding: 3rem 0;
    }

    .hello-grid {
        grid-template-columns: 1fr;
    }

    .hello-image {
        order: 2;
    }

    .hello-content {
        order: 1;
        text-align: center;
    }

    .hello-content h2 {
        font-size: 2.8rem;
        line-height: 1.4;
        margin-bottom: 3.5rem;
        font-weight: 400;
        text-align: center;
        letter-spacing: normal;
        text-transform: none;
    }

    .hello-content p{
        font-size: 1.7rem;
    }

    .quote-section-content {
        text-align: center;
        justify-content: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        justify-items: center;
    }

    .quote-content {
        margin-left: 0;
        order: 1;
    }

    .quote-image {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hello-quote-section {
        padding: 5rem 0 2rem 0;
    }

    .hello-grid {
        grid-template-columns: 1fr;
    }

    .hello-image {
        order: 2;
    }

    .hello-content {
        order: 1;
        text-align: center;
    }

     .hello-content h2 {
        font-size: 2.5rem;
        line-height: 1.4;
        margin-bottom: 3.5rem;
        font-weight: 400;
        text-align: center;
        letter-spacing: normal;
        text-transform: none;
    }

    .hello-content p{
        font-size: 1.5rem;
    }

    .quote-section-content {
        text-align: center;
        justify-content: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .quote-section-content p {
        font-size: 1.5rem;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        justify-items: center;
    }

    .quote-content {
        margin-left: 0;
        order: 1;
    }

    .quote-image {
        order: 2;
    }

}

/* ========================================
   COLLECTIONS GRID SECTION
   ======================================== */
.collections-grid-section {
    padding: 6rem 0;
    background-color: #F7F4EF;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.collection-card {
    display: flex;
    flex-direction: column;
}

.collections-grid-section h2{
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.collection-image {
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    height: 300px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-card h3 {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.collection-card p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.collection-link {
    font-size: 1.3 rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2c2c2c;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
    font-weight: bold;
}

.collection-link:hover {
    opacity: 1;
}

@media (max-width: 1170px) {
    .collections-grid-section {
        padding: 4rem 0;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .collection-image {
        height: 250px;
    }
}

@media (max-width: 860px) {
    .collections-grid-section {
        padding: 3rem 0;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collection-image {
        height: 300px;
    }

    .collection-card p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .collections-grid-section {
        padding: 2rem 0;
    }

    .collections-grid-section h2 {
        font-size: 2.5rem;
    }

    .collection-image {
        height: 250px;
        margin-bottom: 1rem;
    }

    .collection-card p {
        font-size: 1.5rem;
    }
}

/* ========================================
   MURALS PAGE STYLES
   ======================================== */
.murals-coming-soon {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.murals-coming-soon-content {
    padding: 4rem;
}

.murals-coming-soon-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.murals-coming-soon-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
}

.murals-coming-soon-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

.murals-coming-soon-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1170px) {
    .murals-coming-soon {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .murals-coming-soon-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .murals-coming-soon {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .murals-coming-soon-content {
        padding: 2rem;
    }

    .murals-coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .murals-coming-soon-content p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .murals-coming-soon {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .murals-coming-soon-content {
        padding: 1rem;
    }

    .murals-coming-soon-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .murals-coming-soon-content p {
        font-size: 1.5rem;
    }
}

/* Journal Section */
.journal-section {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.journal-content {
    padding: 4rem;
}

.journal-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.journal-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
}

.journal-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

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

@media (max-width: 1170px) {
    .journal-section {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .journal-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .journal-section {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .journal-content {
        padding: 2rem;
    }

    .journal-content h1 {
        font-size: 2.5rem;
    }

    .journal-content p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .journal-section {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .journal-content {
        padding: 1rem;
    }

    .journal-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .journal-content p {
        font-size: 1.5rem;
    }
}

/* Painted Furniture Section */
.painted-furniture-section {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.painted-furniture-content {
    padding: 4rem;
}

.painted-furniture-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.painted-furniture-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
}

.painted-furniture-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

.painted-furniture-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1170px) {
    .painted-furniture-section {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .painted-furniture-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .painted-furniture-section {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .painted-furniture-content {
        padding: 2rem;
    }

    .painted-furniture-content h1 {
        font-size: 2.5rem;
    }

    .painted-furniture-content p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .painted-furniture-section {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .painted-furniture-content {
        padding: 1rem;
    }

    .painted-furniture-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .painted-furniture-content p {
        font-size: 1.5rem;
    }
}

/* Paintings Section */
.paintings-section {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.paintings-content {
    padding: 4rem;
}

.paintings-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.paintings-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
}

.paintings-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

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

.update-info {
    font-size: 1.2rem;
    color: #d83b3b;
    line-height: 1.9;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 1170px) {
    .paintings-section {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .paintings-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .paintings-section {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .paintings-content {
        padding: 2rem;
    }

    .paintings-content h1 {
        font-size: 2.5rem;
    }

    .paintings-content p {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .paintings-section {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .paintings-content {
        padding: 1rem;
    }

    .paintings-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .paintings-content p {
        font-size: 1.5rem;
    }
}

/* Enquire Section */
.enquire-section {
    padding: 8rem 0;
    background-color: #faf9f7;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.enquire-content {
    padding: 4rem;
    max-width: 600px;
}

.enquire-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.enquire-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 2rem;
}

.enquire-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

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

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.form-col {
    margin-bottom: 0;
}

.form-full {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.required {
    color: #d83b3b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    border: none;
    border-bottom: 1px solid #8b8b7a;
    background-color: transparent;
    color: #2c2c2c;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a8a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #2c2c2c;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232c2c2c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px 8px;
    padding-right: 1.5rem;
}

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

.upload-instruction {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.file-upload-label {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #8b8b7a;
    background-color: transparent;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.file-upload-label:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.submit-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    background-color: #2c2c2c;
    color: #ffffff;
    border: 1px solid #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    width: 100%;
    margin-top: 2rem;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

@media (max-width: 1170px) {
    .enquire-section {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .enquire-content h1 {
        font-size: 2.8rem;
    }

    .form-row {
        gap: 2rem;
    }
}

@media (max-width: 860px) {
    .enquire-section {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .enquire-content {
        padding: 2rem;
    }

    .enquire-content h1 {
        font-size: 2.5rem;
    }

    .enquire-content p {
        font-size: 1.7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .enquire-section {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .enquire-content {
        padding: 1rem;
    }

    .enquire-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }

    .enquire-content p {
        font-size: 1.5rem;
    }

    .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }

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

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }

    .upload-instruction {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .file-upload-label {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Impressum Section */
.impressum-section {
    padding: 8rem 0;
    background-color: #faf9f7;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.impressum-content {
    padding: 4rem;
    max-width: 800px;
}

.impressum-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.impressum-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.impressum-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.impressum-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

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

@media (max-width: 1170px) {
    .impressum-section {
        min-height: 40vh;
        padding: 4rem 0;
    }

    .impressum-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 860px) {
    .impressum-section {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .impressum-content {
        padding: 2rem;
    }

    .impressum-content h1 {
        font-size: 2.5rem;
    }

    .impressum-content h2 {
        font-size: 1.3rem;
    }

    .impressum-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .impressum-section {
        min-height: 30vh;
        padding: 1rem 0;
    }

    .impressum-content {
        padding: 1rem;
    }

    .impressum-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
        margin-bottom: 1.5rem;
    }

    .impressum-content h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .impressum-content p {
        font-size: 0.9rem;
    }
}

/* Col-12 Grid Column */
.col-12 {
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (max-width: 1170px) {
    .col-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 860px) {
    .col-12 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .col-12 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
