/* =======================================
   RESET & BASE
======================================= */
/* Hamburger hidden by default (desktop) */

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




.brand-h1 {
  display: block;
  margin-top: 0.1em;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-style: italic;
}

/* HEADINGS / TITLES - Premium Museum Editorial Sizing */
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 5rem;          /* main hero/title size */
    letter-spacing: 2px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 1em;
    letter-spacing: -.5px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;          /* section headers, gallery titles */
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 1em;
    letter-spacing: -.25px;
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;          /* subheaders */
    letter-spacing: 1px;
    line-height: 1.3;
    color: #111;
    letter-spacing: -.20px;
}



/* BODY / UI / NAV */
body, p, nav a, .tagline, .cta {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #111;
    margin-bottom: 1em;
    direction: rtl;
}

.section-full {
    width: 100%;
    height: 100vh;            /* full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0%;
    box-sizing: border-box;
}
/* =======================================
   HEADER
======================================= */
header {
    position: relative;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

header .logo {
    font-size: 1.0rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #111;
}

header .logo img {
    height: 100px;       /* control logo size */
    width: auto;        /* keep proportions */
    display: block;
}

header .logo a {
    display: inline-block;
}




.hero-image-section {
    display: flex;
    flex-direction: column; /* stack image + title vertically */
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-image-container {
    width: 100%;
    overflow: hidden;
    position: relative; /* remove absolute */
}

.hero-image-container img {
    width: 100%;
    height: auto;       /* keep aspect ratio */
    max-height: 80vh;   /* image takes most of screen */
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Title below image */
.hero-image-section .image-title {
    margin-top: 30px;   /* spacing below image */
    text-align: center;
}

.hero-image-section .image-title h1,
.hero-image-section .image-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;    /* adjust for hero layout */
    margin: 0;
}

.hero-image-section .image-title .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-top: 10px;
    opacity: 0.9;
}


.hero-content {
    position: relative;
    text-align: center;
    max-width: 650px;
    z-index: 1;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 3rem;
    letter-spacing: 2px;
}



.tagline {
    font-size: 1.5rem;
    margin-top: 20px;
    opacity: 0.9;
}

.cta {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta:hover {
    background: #111;
    color: #fff;
}

/* HERO IMAGE SECTION */
.hero-image-section {
    background-color: #fefefe;
}

.hero-image-section .image-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0%;     /* horizontal padding */
}

.hero-image-section img {
    width: 100%;
    height: auto;       /* keeps aspect ratio */
    object-fit: cover;
    display: block;
    border-radius: 4px; /* optional subtle rounding */
    object-fit: cover;
}

/* =======================================
   WORK / GALLERY PAGE
======================================= */
.gallery {
    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 60px;
    padding: 100px 10%;
    align-items: center;    /* optional: center items horizontally */
}

.art-item {
    width: 100%;            /* full width */
    max-width: 600px;       /* optional max width for large screens */
}

.art-item img {
    width: 100%;
    height: auto; /* keeps aspect ratio */
    display: block;
    object-fit: cover; /* ensures image fills its container if forced height */
}



.art-item p {
    margin-top: 15px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

/* Gallery section */
.section-full.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;  /* center items horizontally */
    padding: 80px 5%;     /* top/bottom padding for breathing space */
    background-color: #fefefe;  /* optional light background */
    box-sizing: border-box;
}

/* Gallery header / H2 */
.section-full.gallery h2 {
    font-weight: 700;
    font-size: 3rem;
    text-align: center;       /* center horizontally */
    margin-bottom: 60px;      /* space below heading */
    letter-spacing: 1.5px;    /* subtle luxury spacing */
    color: #111;              /* dark text for contrast */
}

/* Optional tagline under gallery header */
.section-full.gallery .gallery-tagline {
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.85;
    margin-top: 10px;
}

/* About Artist Section */
.about-artist {
    display: flex;
    flex-direction: column;   /* stack vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5%;
    box-sizing: border-box;
    min-height: auto;   /* override 100vh */
    height: auto;
    padding: 140px 5% 100px 5%; /* extra top padding for fixed nav */
}



.about-artist .artist-bio {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 650px;
    opacity: 0.9;
    margin: 0 auto;
    text-align: justify;         /* align both sides */
    text-justify: inter-word;    /* optimal spacing for justified text */
}
.about-artist .image-container {
    width: 100%;
    max-width: 650px;
    margin-bottom: 60px; /* space below image only */
}

.about-artist .image-container img {
    width: 100%;
    height: auto;       /* keep aspect ratio */
    max-height: 80vh;   /* image takes most of screen */
    object-fit: cover;
    display: block;
    border-radius: 4px;
    border: 2px solid #eee;       /* light outer border */
    padding: 8px;                  /* space between image and border */
    background-color: #fff;        /* frame background */
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* elegant shadow */
}


ul {
    list-style-type: disc;        /* keep bullets */
    padding-left: 0;              /* remove default padding */
    display: inline-block;        /* shrink ul to text width */
    text-align: left;             /* keep text left-aligned inside the block */
    margin: 0 auto 20px auto;     /* center the ul block */
  }

  ul li {
    margin: 6px 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #222;
  }

  ul.meta li {
    color: #555;
    font-size: 1.25rem;

  }


/* =======================================
   EXHIBITIONS PAGE
======================================= */
.exhibitions {
    max-width: 800px;          /* optional: constrain width for readability */
    margin: 0 auto;            /* horizontally center the section */
    padding: 80px 20px;        /* top/bottom and some horizontal padding */
    position: relative;
    z-index: 0;
    text-align: center;
}

.exhibitions p {
    margin-bottom: 12px;
    opacity: 0.85;
    font-size: 1.25rem;
}

.exhibitions ul {
    list-style-type: disc;          /* standard bullets */
    list-style-position: inside;    /* bullets move with text */
    padding-left: 0;                /* remove default padding */
    margin: 10px 0 30px 0;          /* spacing above and below */
    text-align: left;               /* always left-align text */
    display: inline-block;          /* shrink ul to text width */
    max-width: 600px;
}

.exhibitions ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #222;
}
.exhibitions-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: #fff;
    margin: 0 auto;
}

.exhibitions-table th,
.exhibitions-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
    color: #222;
}

.exhibitions-table th {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #111;
    border-bottom: 2px solid #111;
}

.exhibitions-table tbody tr:hover {
    background-color: #f7f7f7;
}

.exhibitions-table td:first-child {
    font-weight: 500;
}

.exhibitions-table td:nth-child(2) {
    font-style: italic;
    opacity: 0.85;
}

.exhibitions-table td:nth-child(3) {
    text-align: right;
    color: #555;
}

/* ===========================
   EXHIBITIONS TABLE - MOBILE SCROLL
=========================== */
@media (max-width: 768px) {

  /* Wrap table in scrollable container */
  .table-wrapper {
      overflow-x: auto;       /* allows horizontal scroll */
      -webkit-overflow-scrolling: touch; /* smooth swipe on iOS */
      width: 100%;
  }

  .exhibitions-table {
      min-width: 600px;       /* table keeps minimum width */
      border-collapse: collapse;
  }

  .exhibitions-table th,
  .exhibitions-table td {
      padding: 10px 8px;
      font-size: 0.95rem;
      white-space: nowrap;    /* prevent line breaks inside cells */
  }

  .exhibitions-table td:nth-child(3) {
      text-align: left;
      display: table-cell;    /* keep as cell for horizontal scroll */
      margin-top: 0;          /* remove block margin */
  }
}
/* =======================================
   CV PAGE
======================================= */
.cv-section {
    max-width: 800px;          /* optional: constrain width for readability */
    margin: 0 auto;            /* horizontally center the section */
    padding: 80px 20px;        /* top/bottom and some horizontal padding */
    position: relative;
    z-index: 0;
    text-align: center;

}



.cv-section p {
    margin-bottom: 12px;
    opacity: 0.85;
    font-size: 1.25rem;
}

/* ===========================
   UL LISTS FOR CV
=========================== */
.cv-section ul {
    list-style-type: disc;          /* standard bullets */
    list-style-position: inside;    /* bullets move with text */
    padding-left: 0;                /* remove default padding */
    margin: 10px 0 30px 0;          /* spacing above and below */
    text-align: left;               /* always left-align text */
    display: inline-block;          /* shrink ul to text width */
    max-width: 600px;               /* optional: constrain width for readability */
}

.cv-section h3 {
    display: block; /* full-width headings */
    font-size: 2rem;
    margin: 40px 0 15px 0; /* space above and below */
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}

.cv-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #222;
}

/* =======================================
   CONTACT PAGE
======================================= */
.contact-section {
    padding: 80px 10%;
}

.contact-section p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* =======================================
   FOOTER
======================================= */
footer {
position: relative;  /* Ensure it's in normal flow */
    text-align: center;
    padding: 40px 10%;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    letter-spacing: 1px;
    opacity: 0.8;
    z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: space-between; /* h4 left, links right */
  align-items: center; /* vertically center h4 and links */
  padding: 20px;
  border-radius: 8px;
  width: 800px; /* Adjust width as needed */
  background-color: #f8f8f8;
  margin: 0 auto; /* Center the container horizontally */
}

.footer-links h4 {
  font-size: 18px;
  margin-right: 20px;
  color: #333;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* Make links horizontal */
  gap: 20px; /* Space between links */
}

.footer-links ul li {
  margin: 0; /* Remove vertical spacing */
  font-size: 0.8rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #44413e;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #111;
  text-decoration: underline;
}

/* Desktop header/nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Desktop nav links */
nav {
    display: flex;
    flex-direction: row; /* horizontal */
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #111;
    font-size: 0.95rem;
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Hide nav by default on mobile */
    nav {
        display: none;
        flex-direction: column; /* vertical links */
        width: 100%;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        gap: 15px;
        padding: 10px 0;
    }

    /* Show nav when active */
    nav.active {
        display: flex;
    }

    /* Mobile nav links */
    nav a {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
}

/* ===========================
   MOBILE HEADING & BODY ADJUSTMENTS
=========================== */
@media (max-width: 768px) {

    h1 {
        font-size: 2rem;       /* reduce main hero/title size */
        line-height: 1.2;
        letter-spacing: -0.25px;
        padding: 20px;
    }

    h2 {
        font-size: 1.8rem;       /* smaller section headers */
        line-height: 1.2;
        letter-spacing: -0.1px;
        padding: 0px;
    }

    h3 {
        font-size: 1.5rem;     /* smaller subheaders */
        line-height: 1.3;
        letter-spacing: 0px;
        padding: 0px;
    }

    body, p, nav a, .tagline, .cta {
        font-size: 0.9rem;     /* slightly smaller body text */
        line-height: 1.4;
        padding: 10px;
    }

    .cta {
        padding: 10px 25px;    /* smaller call-to-action buttons */
        font-size: 0.9rem;
    }
}

/* ===========================
   HERO SECTION TEXT - MOBILE
=========================== */
@media (max-width: 768px) {

  .hero-image-section .image-title h1,
  .hero-image-section .image-title h2 {
      font-size: 2rem;       /* shrink hero titles on mobile */
      line-height: 1.2;
  }

  .hero-image-section .image-title .tagline {
      font-size: 1rem;       /* shrink tagline */
      margin-top: 8px;
      line-height: 1.4;
  }
}

/* ===========================
   LISTS - MOBILE
=========================== */
@media (max-width: 768px) {

  ul {
    padding: 20px;
    list-style-type: none;
  }

  ul li {
      margin: 4px 0;       /* slightly tighter spacing */
      font-size: 0.9rem;     /* reduce font size */
      line-height: 1.4;    /* slightly tighter line height */
  }

  ul.meta li {
      font-size: 1rem;     /* scale meta items down */
      color: #555;         /* keep same color */
      line-height: 1.4;
  }
}

/* Desktop: keep original size */
.video-container {
    position: relative;
    width: 650px;       /* fixed desktop width */
    height: 450px;      /* fixed desktop height */
    margin: 0 auto;
}

/* Make iframe fill container */
.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Mobile: make video responsive */
@media (max-width: 768px) {
    .video-container {
        width: 100%;           /* full width of screen */
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-content h2 {
        font-size: 1.8rem;      /* smaller heading on mobile */
        text-align: center;
    }
}


.hero-content a {
  color: #44413e;        /* Custom link color */
  text-decoration: underline; /* Remove underline */
  font-weight: 500;
  transition: all 0.3s ease;

}

.hero-content a:hover {
  color: #111;            /* Darker on hover */
  text-decoration: none;
}
/* ===========================
   ABOUT ARTIST BIO - MOBILE
=========================== */
@media (max-width: 768px) {

  .about-artist .artist-bio {
      font-size: 0.9rem;       /* smaller font for mobile */
      line-height: 1.5;      /* tighter line spacing */
      max-width: 100%;        /* use full width of screen */
      padding: 0 5px;        /* optional horizontal padding */
      text-align: justify;    /* keep justified text */
      text-justify: inter-word;
      margin: 0 auto;
  }

  .art-item p {
    margin-top: 15px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}
}


/* ===========================
   CV SECTION PARAGRAPHS - MOBILE
=========================== */
@media (max-width: 768px) {
  .cv-section p {
      font-size: 0.9rem;       /* smaller font on mobile */
      margin-bottom: 10px;   /* slightly tighter spacing */
      line-height: 1.5;      /* improve readability on small screens */
  }
  .cv-section {
      max-width: 100%;       /* use full screen width */
      text-align: left;      /* optional: left-align text for better readability */

    margin: 0 auto;            /* horizontally center the section */
    padding: 0px 0px;        /* top/bottom and some horizontal padding */
    position: relative;
    z-index: 0;
    text-align: center;
  }
}


/* ===========================
   .section-full - MOBILE
=========================== */
@media (max-width: 768px) {
  .section-full {
      height: auto;           /* let section height adjust to content */
      flex-direction: column; /* stack content vertically if needed */
      justify-content: flex-start; /* start from top for better UX */
      align-items: center;    /* keep items centered horizontally */
      padding-top: 80px;      /* use padding instead of margin */
      padding-bottom: 80px;
      margin: 0;              /* remove margin */
  }
}

/* ===========================
   CV SECTION LISTS & HEADINGS - MOBILE
=========================== */
@media (max-width: 768px) {
header .logo img {
    height: 50px;       /* control logo size */
    width: auto;        /* keep proportions */
    display: block;
}

  /* CV section headings */
  .cv-section h3 {
      font-size: 1.5rem;     /* smaller heading */
      margin: 30px 0 10px 0; /* tighter spacing above/below */
      padding-bottom: 4px;   /* slightly smaller border padding */
  }

  /* CV lists container */
  .cv-section ul {
      max-width: 100%;        /* fill mobile screen */
      padding-left: 15px;     /* small padding for bullets */
      margin: 10px 0 20px 0;  /* slightly reduced spacing */
      display: block;         /* full width on mobile */
  }

  /* CV list items */
  .cv-section ul li {
      font-size: 0.9rem;      /* smaller text for mobile */
      margin-bottom: 6px;     /* slightly tighter spacing */
      line-height: 1.4;       /* tighter line height for mobile */
  }
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.tabs button {
    background-color: #f0f0f0;
    border: none;
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.tabs button.active {
    background-color: #333;
    color: #fff;
}

.tab-content .tab-pane {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
}

.tab-content .tab-pane.active {
    display: block;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown links (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Dropdown links styling */
.dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style parent hover */
.dropdown:hover .dropbtn {
    color: #000;
    font-weight: bold;
    cursor: default; /* pointer stays default since not clickable */
}

.tab-pane a {
    color: #44413e;           /* your base link color, e.g., gold */
    text-decoration: underline; /* make it underlined */
    transition: color 0.3s ease; /* smooth hover transition */
}

.tab-pane a:hover {
    color: #111;            /* darker gold on hover */
    text-decoration: none;      /* remove underline on hover if desired */
}

.tagline a {
    color: #44413e;            /* base color for the link, e.g., gold */
    text-decoration: underline; /* underline the link */
    transition: color 0.3s ease; /* smooth color change on hover */
}

.tagline a:hover {
    color: #111;             /* darker gold on hover */
    text-decoration: none;       /* remove underline on hover if you like */
}

.artist-bio a {
    color: #44413e;            /* base color for the link, e.g., gold */
    text-decoration: underline; /* underline the link */
    transition: color 0.3s ease; /* smooth color change on hover */
}

.artist-bio a:hover {
    color: #111;             /* darker gold on hover */
    text-decoration: none;       /* remove underline on hover if you like */
}

.cv-section a {
    color: #44413e;            /* base color for the link, e.g., gold */
    text-decoration: underline; /* underline the link */
    transition: color 0.3s ease; /* smooth color change on hover */
}

.cv-section a:hover {
    color: #111;             /* darker gold on hover */
    text-decoration: none;       /* remove underline on hover if you like */
}

@media (max-width: 768px) {
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px; /* spacing between links */
    padding-left: 0;
  }

  .footer-links li {
    list-style: none;
  }
}

@media (max-width: 768px) {
  .footer-links {
    width: 100%;
  }
}