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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* All headings use elegant, thin sans-serif */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    background-color: #f8f8f8;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid #ddd;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    background-color: #f8f8f8;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #ddd;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav ul li {
    padding: 0.75rem 2rem;
}

.mobile-nav ul li a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Landing Page Styles */
.landing-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Full Screen Slideshow */
.fullscreen-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* Landing Overlay */
.landing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.landing-logo {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.landing-logo img {
    max-width: 1400px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.landing-tagline {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Helvetica Neue', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.landing-enter-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c2c2c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Segoe UI', 'Roboto', Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.landing-enter-btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Landing Page */
@media (max-width: 768px) {
    .landing-logo img {
        max-width: 800px;
    }

    .landing-tagline {
        font-size: 1.2rem;
    }

    .landing-enter-btn {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

/* Gallery Section */
.gallery-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: #fff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background-color: #f0f0f0;
}

.tab-btn.active {
    background-color: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-grid.hidden {
    display: none;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.item-info {
    padding: 1.5rem;
}

.item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.item-info p {
    margin: 0.25rem 0;
    color: #666;
}

.item-info .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37;
    margin-top: 0.75rem;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.about-image-secondary {
    text-align: center;
    margin-top: 3rem;
}

.about-image-secondary img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: #d4af37;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #b8941f;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-details p {
    margin: 1rem 0;
}

.contact-details a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #d4af37;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

footer p {
    margin-top: 1rem;
    color: #aaa;
}

/* Gallery Landing Page */
.gallery-landing {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.gallery-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-hero h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

.gallery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.gallery-option-card {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.option-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.option-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: #fff;
    padding: 3rem 2rem;
    transition: padding 0.3s;
}

.gallery-option-card:hover .option-overlay {
    padding: 3.5rem 2rem;
}

.option-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-btn {
    display: inline-block;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.gallery-option-card:hover .view-btn {
    transform: translateX(10px);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d4af37;
}

/* Originals Page */
.originals-section,
.reproductions-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Featured Section */
.featured-section {
    margin-bottom: 4rem;
    background-color: #f5f5f5;
    padding: 3rem;
    border-radius: 8px;
}

.featured-title {
    text-align: center;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    position: relative;
}

.featured-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #d4af37;
    margin: 1rem auto 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.featured-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #d4af37;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.featured-info {
    padding: 2rem;
}

.featured-info h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.featured-info .medium {
    color: #666;
    font-style: italic;
    margin-bottom: 0.25rem;
}

.featured-info .dimensions {
    color: #666;
    margin-bottom: 1rem;
}

.featured-info .description {
    color: #555;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 1rem;
}

.featured-info .price {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    margin: 1.5rem 0;
}

.inquire-btn,
.notify-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.inquire-btn:hover,
.notify-btn:hover {
    background-color: #d4af37;
}

/* All Works Section */
.all-works-section,
.available-section {
    margin-top: 4rem;
}

.all-works-section h2,
.available-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

/* Announcement Section */
.announcement-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.announcement-banner {
    background-color: #d4af37;
    padding: 1.5rem;
    text-align: center;
}

.announcement-label {
    display: inline-block;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.announcement-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.announcement-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    background-color: #fff;
}

.announcement-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.coming-soon-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    color: #d4af37;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.announcement-details h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.announcement-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.announcement-specs {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.spec-item {
    margin-bottom: 1.5rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-item strong {
    display: block;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.spec-item p {
    color: #666;
    margin: 0;
}

.announcement-cta {
    text-align: center;
    padding-top: 1rem;
}

.notify-btn {
    width: 100%;
    max-width: 400px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-note {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Reproduction Info */
.reproduction-info {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.reproduction-info h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.reproduction-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Announcement Modal */
.announcement-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s;
}

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.announcement-modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.announcement-modal-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.announcement-modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.announcement-modal-header .release-date {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 300;
}

.announcement-modal-body {
    padding: 3rem;
}

.announcement-modal-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.announcement-modal-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.print-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.print-option-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.print-option-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.print-option-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #ddd;
}

.print-option-header h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.print-option-badge {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.print-option-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #2c2c2c;
    text-align: right;
}

.print-option-sizes {
    margin-bottom: 1.5rem;
}

.print-option-sizes h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.size-price-list {
    list-style: none;
    padding: 0;
}

.size-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #555;
}

.size-price-list .price {
    color: #d4af37;
    font-weight: bold;
}

.print-option-price {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.print-option-price h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.print-option-pricing {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.pricing-option {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-option.secondary {
    opacity: 0.8;
}

.pricing-option h4 {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-divider {
    text-align: center;
    color: #999;
    font-weight: bold;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.price-large {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: bold;
    margin: 0.25rem 0;
}

.price-medium {
    font-size: 2rem;
    color: #666;
    font-weight: bold;
    margin: 0.25rem 0;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

.print-option-cta {
    text-align: center;
}

.notify-option-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.notify-option-btn:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

.announcement-modal-footer {
    background-color: #f5f5f5;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

.announcement-modal-footer p {
    color: #666;
    margin-bottom: 1rem;
}

.footer-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-cta-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

/* Responsive Announcement Modal */
@media (max-width: 768px) {
    .print-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .announcement-modal-header h2 {
        font-size: 1.8rem;
    }

    .announcement-modal-body {
        padding: 2rem 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background-color: #d4af37;
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.modal-image-container {
    position: relative;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #d4af37;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.modal-details h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-meta-label {
    font-weight: bold;
    color: #666;
    font-size: 0.95rem;
}

.modal-meta-value {
    color: #2c2c2c;
    font-size: 1rem;
}

.modal-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.modal-price {
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-inquire {
    background-color: #d4af37;
    color: #fff;
}

.btn-inquire:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.modal-availability {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.modal-availability.sold {
    background-color: #ffebee;
    color: #c62828;
}

/* Make gallery items clickable */
.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }

    .modal-price {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .splash-carousel {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-section,
    .about-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    /* Gallery Landing Responsive */
    .gallery-hero h1 {
        font-size: 2rem;
    }

    .gallery-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .option-image {
        height: 350px;
    }

    /* Featured Section Responsive */
    .featured-section {
        padding: 2rem 1rem;
    }

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

    .featured-image {
        height: 300px;
    }

    /* Announcement Responsive */
    .announcement-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .announcement-image img {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .splash-carousel {
        height: 300px;
    }

    .enter-btn {
        padding: 0.75rem 2rem;
        font-size: 1.2rem;
    }

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

    .gallery-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

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

    .option-overlay h2 {
        font-size: 1.5rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

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

    .announcement-banner h2 {
        font-size: 1.5rem;
    }

    .announcement-details h3 {
        font-size: 1.5rem;
    }

    .featured-section {
        padding: 1.5rem 1rem;
    }
}

