/* ---------------------------------------- */
/* header */
/* ---------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-header {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    background-color: #222E22;
    height: 120px; 
    width: 100%;
    align-items: center;
    border-bottom: 2px solid #C3CBBD;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

body {
    padding-top: 120px; 
}

.header-left {
    display: flex;
    justify-content: center;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    cursor: pointer;
}

.logo a {
    display: block;
    line-height: 0;
    text-decoration: none;
}

/* Right Half (Navigation) */
.header-right {
    display: flex;
    justify-content: flex-start;
    padding-left: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #C3CBBD;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1rem !important;
}

.nav-links a:hover {
    color: #D9B879;
}

/* Dropdown Logic */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222E22;
    min-width: 180px;
    list-style: none;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 10px 0;
    z-index: 100;
}

.dropdown-content li a {
    padding: 12px 20px;
    font-size: 0.95rem;
    display: block;
}

.dropdown-content li a:hover {
    background-color: #3C513C;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Media Query for Tablets and Phones */
@media (max-width: 768px) {
    .main-header {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .header-left {
        margin-bottom: 10px;
    }

    .header-right {
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    body {
        padding-top: 130px; 
    }
}

/* ---------------------------------------- */
/* footer */
/* ---------------------------------------- */

.main-footer {
    background-color: #222E22;
    width: 100%;
    align-items: center;
    border-top: 2px solid #C3CBBD;
    text-align: center; 
    padding: 20px; 
    color: #C3CBBD;
}
.main-footer p {
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1rem !important;
}

/* ---------------------------------------- */
/* home */
/* ---------------------------------------- */

/* Layout Constants */
:root {
    --primary-color: #222E22;
    --bg-light: #FFFFFF;
}

/* Hero Section */
.hero {
    background: #e9ecef; /* Replace with an image later */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/crf2.jpg') center/cover no-repeat;
    
    color: #D9B879; /* Ensure text is white to contrast with the dark overlay */
}

.hero h1 { margin-bottom: 10px; font-family: "Dancing Script", cursive; font-weight: 700; font-size: 5rem !important; }
.hero p { color: #C3CBBD; margin-bottom: 50px; font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1.75rem !important;}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow to text for depth */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--primary-color);
    color: #C3CBBD;
    font-weight: bold;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px #C3CBBD solid;
    transition: 0.3s;
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1rem !important;
}

.cta-button:hover { background: #3C513C; }

/* Grid / Services */
.services { 
    padding: 60px 20px; 
    text-align: center; 
    background: #222E22; 
    border-bottom: 2px solid #C3CBBD; 
    border-top: 2px solid #C3CBBD;
    color: #D9B879;
}
.services h2 {
    font-family: "Dancing Script", cursive; font-weight: 700; font-size: 4rem !important;
}
.grid {
    background: #222E22;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
    color: #222E22;
}

.card {
    background: #FFFFFF;
    padding: 20px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
}
.card h3 {
    font-family: "Dancing Script", cursive; font-weight: 700; font-size: 3.5rem !important;
    color: #D9B879;
}
.card p {
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1.5rem !important;
}

/* About Section */
.about { background: var(--bg-light); padding: 60px 20px; }
.about-container {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    color: #222E22;
}
.about-container h2 {
    font-family: "Dancing Script", cursive; font-weight: 700; font-size: 4rem !important;
    color: #D9B879;
}
.about-container p {
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1.25rem !important;
}

.about-text { flex: 2; min-width: 300px; }

/* Placeholder for Pictures */
.img-placeholder1 {
    background-color: #ccc;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    font-style: italic;

    background: url('images/crf1.jpg') center/cover no-repeat;
}
.img-placeholder2 {
    background-color: #ccc;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    font-style: italic;

    background: url('images/crf3.jpg') center/cover no-repeat;
}
.img-placeholder3 {
    background-color: #ccc;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    font-style: italic;

    background: url('images/crf4.jpg') center/cover no-repeat;
}

.about-img { 
    height: 300px; 
    flex: 1; 
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    font-style: italic;

    background: url('images/icon.png') center/cover no-repeat;
}

/* ---------------------------------------- */
/* contact */
/* ---------------------------------------- */

.contact-hero {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background: url('images/crf5.jpg') center/cover no-repeat; /* Replace with artist/studio photo */
    background-color: #ccc; /* Fallback */
    border-radius: 12px;
    border: 2px solid #C3CBBD;
    box-shadow: 10px 10px 0px #222E22;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h2 {
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    color: #D9B879;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: "Sniglet", system-ui;
    font-size: 1.25rem;
    color: #222E22;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-method {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link {
    font-family: "Sniglet", system-ui;
    font-size: 1.5rem;
    color: #222E22;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: #D9B879;
    border-bottom: 2px solid #D9B879;
}

.social-tag {
    background-color: #222E22;
    color: #C3CBBD;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
    font-family: "Sniglet", system-ui; font-weight: 500; font-size: 1.25rem !important;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .contact-info {
        text-align: center;
    }
    .contact-info h2 {
        font-size: 3rem;
    }
    .contact-visual {
        height: 300px;
        width: 100%;
    }
}

/* ---------------------------------------- */
/* placeholder */
/* ---------------------------------------- */

.empty-state-section {
    height: 70vh; /* Takes up most of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fdfdfd;
    padding: 20px;
}

.empty-content {
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

.empty-content h1 {
    font-family: "Dancing Script", cursive;
    font-size: 5rem;
    color: #D9B879;
    margin-bottom: 20px;
}

.empty-content p {
    font-family: "Sniglet", system-ui;
    font-size: 1.5rem;
    color: #222E22;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Decorative element to fill space */
.sketch-icon {
    font-size: 4rem;
    color: #C3CBBD;
    margin-bottom: 20px;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .empty-content h1 { font-size: 3.5rem; }
    .empty-content p { font-size: 1.2rem; }
}