/* General styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}






/* General Header Styling */
header {
    /* padding: 20px 0;*/
    background-color: white;
    text-align: center;
}

/* Header Menu Styling */
.header-menu {
	display: flex;
    justify-content: right;
    gap: 30px;
    /* position: absolute; */
    margin-top: -55px;
}

.menu-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #1d8461; /* Match this color with your theme (e.g., dark emerald or green) */
}





header {
    position: relative;
    text-align: left;
    padding-left: 20px;
    background-color: #fff;
}

header .home-link {
    text-decoration: none; /* Removes underline from the h1 link */
}

header h1 {
    font-family: 'Cinzel', serif;
    font-size: 0.99rem; !important
    margin: 20px 0;
    line-height: 1;
    color: #0e1e1c; /* Dark Emerald */
}

header h1 span {
    display: block;
}

header h1 .witchwood {
    color: #0e1e1c; /* Dark Emerald */
}

header h1 .ink {
    color: #b5a16c; /* Updated Gold Color */
}

header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #0e1e1c; /* Dark Emerald */
}

header .home-button {
    position: absolute;
    top: 20px;
    right: 300px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #000000; /* Black text */
    text-decoration: none;
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
}

header .home-button:hover {
    color: #333333; /* Darker grey on hover */
}


h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2.5em;
    color: #0e1e1c; /* Dark Emerald */
}

/* Explore Section */
.explore-section {
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    color: #000;
}

.explore-section p {
    font-weight: 400;
}

.explore-section a {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background-color: #000000; /* Black button */
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.explore-section a:hover {
    background-color: #333333; /* Darker grey on hover */
}

/* Artist Section */
.artist-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #ffffff;
    margin: 20px 0;
}

.artist-info,
.artist-photo {
    width: 40%;
    padding: 0 20px;
}

.artist-photo img {
    max-width: 80%; /* Adjust to fit container */
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-link a {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    color: #000000; /* Black link */
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.portfolio-link a:hover {
    background-color: #333333; /* Darker grey on hover */
    color: #ffffff; /* White text on hover */
}

/* Contact Section */
.contact-section {
    background-color: #fff; /* Dark Emerald */
    padding: 40px 20px;
    margin: 40px 0;
    color: #000;
}

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form label {
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #cccccc;
}

form button {
    background-color: #000000; /* Black button */
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #333333; /* Darker grey on hover */
}

/* Studio Page - Photo Grid */
.studio-grid {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds space between images */
    margin: 20px 0; /* Adds margin above and below the image grid */
}

.studio-grid img {
    width: 300px; /* Ensures the images are not too big */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the box without distortion */
    border-radius: 8px; /* Optional: adds slightly rounded corners */
}

/* Panel Section */
.panel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
    max-width: 1320px;
    margin: 20px auto;
    box-sizing: border-box;
}

.panel {
    position: relative;
    width: 32%;
    height: calc(82vh - 40px); /* Updated Panel Height */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Subtle black overlay */
    z-index: 1;
}

.panel:hover::before {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle white overlay on hover */
}

.panel:hover .panel-content {
    transform: translateX(-10px); /* Move text slightly to the left */
}

.panel-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    color: #ffffff;
    z-index: 2;
    transition: transform 0.3s ease;
}

.panel-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin: 0 0 10px 0;
	color: white;
}

.panel-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
	color: #fff;
}

.panel a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: block;
    text-decoration: none; /* Remove underline */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* White background */
    color: #000000;
    position: relative;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer .social-media a, .footer-links, .footer-links a{
    color: #000000; /* Black text for social media links */
    text-decoration: none;
    font-weight: bold;
}

footer .social-media a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1320px) {
    .panel-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .panel-container {
        flex-direction: column;
        height: auto;
    }

    .panel {
        width: 100%;
        height: 33.33vh;
    }
	
	header .home-button {
 display: none;
}
}

/* FAQ Page Styling */
.faq-section, .privacy-policy, .terms-and-conditions {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-section h2 {
    font-size: 2.5em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.5em;
    font-weight: 400;
}

.faq-item p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
}

.faq-item a {
    color: #1d8461; /* Adjust this color to match your theme */
    text-decoration: underline;
}

.faq-item a:hover {
    text-decoration: none;
}

/*





*/

/* === Import Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

/* === Workshop Page Global Styles === */
.workshop-page {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #046c4e;
    text-align: center;
}

h2 {
    font-size: 2rem;
    color: #b9935a;
}

h3 {
    font-size: 1.5rem;
    color: #046c4e;
}

/* === Workshop Page Container === */
.workshop-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* === Workshop Pricing Plans === */
.workshop-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.workshop-plan {
    background: #f9f9f9;
    border: 2px solid #b9935a;
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.workshop-plan:hover {
    background: #fffbe6;
}

/* === Workshop Info Section (Hidden by Default) === */
.workshop-info {
    display: none;
    background: #fff;
    border: 2px solid #b9935a;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Show info when active */
.workshop-info.open {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

/* === Contact Form === */
.workshop-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.workshop-contact-form input,
.workshop-contact-form textarea {
    padding: 12px;
    border: 1px solid #444;
    background: #fff;
    color: #222;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}

.workshop-contact-form input:focus,
.workshop-contact-form textarea:focus {
    border-color: #046c4e;
    outline: none;
    box-shadow: 0 0 5px rgba(4, 108, 78, 0.3);
}

/* Submit Button */
.workshop-contact-form button {
    background: #046c4e;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.workshop-contact-form button:hover {
    background: #b9935a;
}

/* === Slide Animation === */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Mobile Responsiveness === */
@media (max-width: 768px) {
    .workshop-pricing {
        flex-direction: column;
        align-items: center;
    }
    .workshop-plan {
        width: 90%;
    }
}
