/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2em;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 15px;
}

h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.75em;
    font-weight: normal;
    color: #3a3a3a;
    margin-bottom: 10px;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #B08D28;
    margin-bottom: 15px;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #1a1a1a;
    margin-bottom: 1.5em;
    line-height: 1.8;
}

/* ===== LINKS ===== */
a {
    color: #B08D28;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B8860B;
    text-decoration: underline;
}

/* ===== LISTS ===== */
ul,
ol {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    margin-left: 20px;
    line-height: 1.6;
}

li {
    margin-bottom: 10px;
}

/* ===== BLOCKQUOTES ===== */
blockquote {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #555;
    border-left: 4px solid #B08D28;
    padding-left: 15px;
    margin: 20px 0;
}

/* ===== CODE ===== */
code {
    font-family: Consolas, "Courier New", monospace;
    background-color: #e9ecef;
    padding: 5px;
}

/* ===== BUTTONS ===== */
button,
.btn,
.submit-btn,
.modal-button,
.toggle-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover,
.btn:hover,
.submit-btn:hover,
.modal-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.toggle-btn {
    border: 2px solid #B08D28;
    background: white;
    color: #B08D28;
}

.toggle-btn:hover {
    background-color: #333333;
    color: white;
    border-color: #333333;
}

.toggle-btn.active {
    background: #000000;
    color: white;
    border-color: #000000;
}

.modal-button.primary {
    background-color: #000000;
}

.modal-button.primary:hover {
    background-color: #333333;
}

.modal-button.secondary {
    background-color: #B08D28;
}

.modal-button.secondary:hover {
    background-color: #B8860B;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    color: #1a1a1a;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    list-style-type: none;
    position: relative;
    /* This is crucial! */
}

.navbar .nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #B08D28;
}

/* Dropdown Styles */
.navbar .nav-links li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar .nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .nav-links li.dropdown .dropdown-menu li {
    width: 100%;
}

.navbar .nav-links li.dropdown .dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #1a1a1a;
    white-space: nowrap;
}

.navbar .nav-links li.dropdown .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #B08D28;
}

.navbar .nav-links li.dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Dropdown arrow indicator */
/* .navbar .nav-links li.dropdown > a::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
} */

.navbar .nav-links li.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    user-select: none;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        gap: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .navbar .nav-links.active {
        display: flex !important;
    }

    .navbar .nav-links li {
        margin-bottom: 0;
    }

    .navbar .nav-links a {
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
    }
}

/* ===== SLIDESHOW ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.1);
}

.slideshow img.active {
    opacity: 1;
}

/* Individual image positioning */
/* Individual image positioning */
.slideshow img:nth-child(1) {
    object-position: center 15%;
    /* Angels-Spoke image - higher toward top */
}

.slideshow img:nth-child(2) {
    object-position: center 25%;
    /* Persuasive-Truth - slightly higher */
}

.slideshow img:nth-child(3) {
    object-fit: cover;
    /* juniper.jpg - full widescreen */
    object-position: center center;
}

/* Pan states that stick - removed conflicting transitions */
.slideshow img.pan-right {
    transform: scale(1.1) translateX(3%);
    transition: transform 4s ease-in-out;
}

.slideshow img.pan-left {
    transform: scale(1.1) translateX(-3%);
    transition: transform 4s ease-in-out;
}

.slideshow img.pan-up {
    transform: scale(1.1) translateY(-3%);
    transition: transform 4s ease-in-out;
}

.slideshow img.pan-down {
    transform: scale(1.1) translateY(3%);
    transition: transform 4s ease-in-out;
}

/* ===== HERO SECTIONS ===== */
.hero-banner,
.page-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 4em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 80px 20px 60px;
    height: auto;
}

.page-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
}

.page-hero p {
    font-size: 1.3em;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    margin: 0;
    font-size: 3em;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
}

/* ===== GALLERY STYLES ===== */
.image-gallery {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    width: 23%;
    margin: 10px 0;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff54;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item p {
    text-align: center;
    margin-top: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

.gallery-grid-item:hover .overlay {
    opacity: 1;
}

.gallery-info {
    padding: 15px;
    background: white;
}

.gallery-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sold-indicator {
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    flex-shrink: 0;
}

.gallery-info p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9em;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    /* Reset any padding */
}

/* Scrollbar compensation */
body.modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}

.modal-content {
    display: flex;
    max-width: 90%;
    max-height: 90%;
    background: white;
    overflow: hidden;
    position: relative;
}

.modal-image-section {
    flex: 1;
    min-width: 50%;
    position: relative;
    cursor: pointer;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 80vh;
}

.modal-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 350px;
}

.modal-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-info {
    margin-bottom: 30px;
}

.modal-info p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #555;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    line-height: 1;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
    padding: 40px;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: calc(100% - 80px);
    max-height: calc(100% - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.artist-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.artist-photo {
    flex: 0 0 300px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-statement {
    flex: 1;
}

.artist-statement h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #B08D28;
    padding-bottom: 15px;
}

.statement-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.statement-text p {
    margin-bottom: 25px;
}

.featured-image img {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    height: auto;
}

.career-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-header h2 {
    font-size: 3em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.career-header p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.career-card {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.career-card h3 {
    font-size: 2em;
    color: #B08D28;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #B08D28;
    padding-bottom: 15px;
}

.show-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    transition: background-color 0.3s ease;
}

.show-item:hover {
    background-color: #f8f9fa;
}

.show-year {
    flex: 0 0 60px;
    font-weight: bold;
    color: #B08D28;
    font-size: 1.1em;
}

.show-details {
    flex: 1;
    color: #555;
    line-height: 1.5;
}

.show-title {
    font-weight: 600;
    color: #1a1a1a;
}

.show-location {
    font-style: italic;
    color: #666;
}

/* .show-item:nth-child(-n+3) {
    background-color: #f8f6e8;
    border-left: 4px solid #B08D28;
} */


.show-item {
    background-color: #f8f6e8;
    border-left: 4px solid #B08D28;
}


.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #B08D28, transparent);
    margin: 80px 0;
}

/* ===== CLASSES PAGE STYLES ===== */
.classes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.class-section {
    margin-bottom: 80px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.class-header {
    display: flex;
    align-items: center;
    min-height: 300px;
    position: relative;
}

.class-header.reverse {
    flex-direction: row-reverse;
}

.class-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-section:hover .class-image img {
    transform: scale(1.05);
}

.class-intro {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.class-intro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.class-intro .subtitle {
    font-size: 1.2em;
    color: #B08D28;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
}

.class-intro .description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.class-details {
    padding: 40px;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-card {
    background: white;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-card h4 {
    color: #B08D28;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pricing-section {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    text-align: center;
}

.pricing-section h3 {
    font-size: 2em;
    margin-bottom: 30px;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    color: #1a1a1a;
    padding: 30px;
    text-align: center;
}

.pricing-card h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #B08D28;
}

.pricing-card .price {
    font-size: 2em;
    font-weight: bold;
    color: #B08D28;
    margin-bottom: 10px;
}

.pricing-card .details {
    color: #666;
    font-size: 1em;
}

.calendar-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.calendar-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.calendar-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.calendar-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.retreats-section {
    background: linear-gradient(135deg, #B08D28 0%, #B8860B 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.retreats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.retreats-content {
    position: relative;
    z-index: 1;
}

.retreats-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.retreats-section .subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.form-toggle-section {
    text-align: center;
    margin-bottom: 50px;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.form-container {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #B08D28 0%, #B8860B 100%);
}

.form-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-section.active {
    display: block;
}

.form-title {
    font-size: 2.2em;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B08D28;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.artwork-details {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
}

.artwork-details h4 {
    color: #B08D28;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-info-section {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}

.contact-info-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-info-card h4 {
    color: #B08D28;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.contact-info-card p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    justify-content: space-around;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    /* removes underline */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.footer-section a:hover {
    color: #ccc;
    /* or any lighter shade you like */
    text-decoration: none;
    /* ensures no underline on hover */
}

.footer-section a:focus {
    color: #ccc;
    outline: none;
    /* optional */
}

.footer-section {
    width: 20%;
}

.footer-section h4 {
    margin-bottom: 10px;
    text-align: left;
    color: #B08D28;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}

.footer-section ul li::before {
    content: "➤";
    /* Unicode star or custom bullet */
    position: absolute;
    left: 0;
    color: #B08D28;
    font-size: 1em;
}


.signature {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.2em;
    color: #555;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    /* Hero sections */
    .hero-banner {
        height: 300px;
    }

    .hero-overlay h1 {
        font-size: 2.5em;
    }

    .hero-overlay {
        padding: 40px 20px 20px;
    }

    .page-hero h1 {
        font-size: 2.5em;
    }

    /* Gallery */
    .image-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 10px;
    }

    /* Modal */
    .modal-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95%;
        overflow-y: auto;
        /* Allow scrolling if content is too tall */
    }

    .modal-image-section {
        min-width: auto;
        max-height: 50vh;
        /* Limit image height to 50% of viewport */
        flex: none;
    }

    .modal-image {
        max-height: 50vh;
        /* Match the container */
        width: 100%;
        object-fit: contain;
        /* Ensure full image is visible */
    }

    .modal-details {
        min-width: auto;
        padding: 20px;
        flex: none;
        /* Don't let it flex to fill remaining space */
        max-height: 45vh;
        /* Ensure there's room for buttons */
        overflow-y: auto;
        /* Allow scrolling within details if needed */
    }

    .modal-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .modal-buttons {
        margin-top: auto;
        /* Push buttons to bottom of their container */
        padding-top: 15px;
    }

    .modal-button {
        width: 100%;
        margin-bottom: 10px;
        padding: 15px;
        font-size: 1em;
    }

    /* Ensure close button is always visible */
    .close-button {
        position: fixed;
        /* Changed from absolute to fixed */
        top: 10px;
        right: 10px;
        z-index: 2002;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    /* Lightbox */
    .lightbox {
        padding: 20px;
    }

    .lightbox-content {
        max-width: calc(100% - 40px);
        max-height: calc(100% - 40px);
    }

    .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* About page */
    .artist-intro {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .artist-photo {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .artist-statement h2 {
        font-size: 2em;
        text-align: center;
    }

    .statement-text {
        text-align: left;
    }

    .career-header h2 {
        font-size: 2.5em;
    }

    .career-card {
        padding: 30px 20px;
    }

    .show-item {
        flex-direction: column;
        gap: 5px;
    }

    .show-year {
        flex: none;
    }

    /* Classes page */
    .class-header {
        flex-direction: column !important;
        min-height: auto;
    }

    .class-header.reverse {
        flex-direction: column !important;
    }

    .class-image {
        height: 250px;
    }

    .class-intro {
        padding: 30px 20px;
    }

    .class-details {
        padding: 30px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calendar-iframe {
        height: 500px;
    }

    .retreats-section {
        padding: 40px 20px;
    }

    /* Contact page */
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .toggle-btn {
        width: 250px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer mobile fixes */
    footer {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        justify-content: flex-start;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.3em;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-section ul {
        margin-left: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 8px;
        padding-left: 0;
        text-align: center;
    }

    .footer-section ul li::before {
        display: none;
        /* Hide the arrow bullets on mobile */
    }

    .footer-section a {
        font-size: 1.1em;
        display: block;
        padding: 5px 0;
    }

    /* Hero banner mobile fixes */
    .hero-banner {
        height: 200px;
    }

    .hero-overlay {
        padding: 20px 20px 30px;
        /* Reduced top padding */
        background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.8));
        /* Start gradient lower */
    }

    .hero-overlay h1 {
        font-size: 2em;
        /* Smaller title */
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        /* Stronger shadow for readability */
    }

    .hero-overlay p {
        font-size: 16px !important;
        /* Override the inline style */
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: #B08D28;
}

.bg-dark {
    background-color: #1a1a1a;
    color: white;
}

.bg-light {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hidden {
    position: absolute;
    left: -9999px;
}