/* ---=== 1. Basic Reset & Defaults ===--- */

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, p, ul, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; /* Good system font stack */
  line-height: 1.6; /* Improve readability */
  color: #333; /* Default dark grey text */
  background-color: #D9D9C5; /* New: Light Beige background */
  /* Default padding-top for desktop header height */
  padding-top: 80px; /* Adjust this in media query for mobile */
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  display: block; /* Remove extra space below images */
  height: auto; /* Maintain aspect ratio */
}

a {
  color: #6A8A6A; /* New: Medium Green link color */
  text-decoration: none;
}

a:hover {
  color: #4A624A; /* New: Dark Green on hover */
  text-decoration: underline;
}

/* ---=== 2. Layout Helpers ===--- */

.container {
  width: 90%; /* Percentage width for responsiveness */
  max-width: 1100px; /* Maximum width for larger screens */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px; /* Add some space inside the container edges */
  padding-right: 15px;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ---=== 3. Typography Basics ===--- */

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 0.75em; /* Space below headings */
  /* We can add custom font-family here later */
}

h1 {
  font-size: 2.5rem; /* Larger size for main page titles */
  color: #4A624A; /* New: Dark Green for main titles */
}

h2 {
  font-size: 2rem;
  color: #4A624A; /* New: Dark Green for section titles */
  text-align: center;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.4rem;
  color: #4A624A; /* New: Dark Green for subheadings */
}

p {
  margin-bottom: 1em; /* Space between paragraphs */
}

/* ---=== 4. Buttons ===--- */

.button {
  display: inline-block; /* Allows padding and behaves like text */
  padding: 10px 20px;
  background-color: #E6B34E; /* New: Golden Yellow */
  color: #4A624A; /* New: Dark Green text on button */
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease; /* Added color transition */
}

.button:hover {
  background-color: #D39C4A; /* Darker Golden Yellow on hover */
  color: #333; /* Darker text on hover */
  text-decoration: none;
}

/* Specific Button Colors (if needed, e.g. white button on dark background) */
.visit-cta .cta-button {
    background-color: #fff; /* White button */
    color: #E6B34E; /* Golden Yellow text */
}

.visit-cta .cta-button:hover {
    background-color: #eee;
    color: #D39C4A; /* Darker Golden Yellow text */
}


/* ---=== 5. Header & Navigation ===--- */
.site-header {
  background-color: #fff; /* Keep header white */
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4A624A; /* New: Dark Green for logo text */
  text-decoration: none;
}
.logo a:hover {
  color: #E6B34E; /* New: Golden Yellow on hover */
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #4A624A; /* New: Dark Green for nav links */
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.current {
  color: #E6B34E; /* New: Golden Yellow on hover/current */
}

/* Underline indicator uses accent color */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #E6B34E; /* New: Golden Yellow */
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.main-nav a:hover::after,
.main-nav a.current::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* ---=== 6. Footer ===--- */
.site-footer {
  background-color: #4A624A; /* New: Dark Green background */
  color: #fff; /* White text */
  text-align: center;
  font-size: 0.9rem;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer p {
  margin-bottom: 0.5em;
}

.site-footer a {
  color: #E6B34E; /* New: Golden Yellow links in footer */
}

.site-footer a:hover {
  color: #F5D39D; /* Lighter Golden Yellow on hover */
}

/* ---=== 7. Homepage Specific Styles ===--- */

/* --- Hero Section --- */
.hero {
  background-color: #4A624A; /* New: Dark Green fallback color */
  /* Background image (placeholder-hero.jpg) from /images/ folder */
  /* Adjust gradient overlay color/opacity if needed for new background */
  background-image: linear-gradient(rgba(74, 98, 74, 0.7), rgba(74, 98, 74, 0.7)), url('images/placeholder-hero.jpg'); /* Adjusted overlay color */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero .tagline {
  font-size: 1.3rem;
  color: #D9D9C5; /* New: Use Light Beige for tagline */
  margin-bottom: 1.5em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: #E6B34E; /* New: Golden Yellow */
  color: #4A624A; /* New: Dark Green text on button */
}

.hero-button:hover {
  background-color: #D39C4A; /* Darker Golden Yellow */
  color: #333; /* Darker text */
}

/* --- Introduction Section --- */
.intro {
  background-color: #D9D9C5; /* New: Light Beige background */
}

.intro h2 {
    /* Default style is likely fine */
}

.intro p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Homepage Features Section Layout --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: #fff; /* Keep white background for individual items */
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Feature images (Teaset.jpg, placeholder-records.jpg, placeholder-storefront.jpg) */
.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.feature-item p {
  margin-bottom: 25px;
  flex-grow: 1;
}

.feature-button {
 align-self: center;
}

/* --- Homepage Call to Visit Section ===--- */
.visit-cta {
    background-color: #E6B34E; /* New: Golden Yellow */
    color: #4A624A; /* New: Dark Green text */
    text-align: center;
}

.visit-cta h2 {
    color: #4A624A; /* New: Dark Green heading */
    margin-bottom: 0.5em;
}

.visit-cta p {
    color: #4A624A; /* New: Dark Green text */
    font-size: 1.1rem;
    margin-bottom: 0.5em;
}
.visit-cta .address, .visit-cta .hours {
    font-weight: bold;
}
/* Button styles already overridden above */


/* ---=== 8. Shared Page Title / Hero Styling ===--- */
.page-title {
    background-color: #4A624A; /* New: Dark Green fallback color */
    /* Background image (placeholder-hero.jpg) from /images/ folder */
     background-image: linear-gradient(rgba(74, 98, 74, 0.7), rgba(74, 98, 74, 0.7)), url('images/placeholder-hero.jpg'); /* Adjusted overlay color */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-title h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.4em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-title p {
    font-size: 1.2rem;
     color: #D9D9C5; /* New: Use Light Beige */
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* ---=== 9. Inner Page Specific Styles ===--- */

/* --- Resale Page Specific Styles (`resale.html`) --- */
.resale-philosophy {
    background-color: #D9D9C5; /* New: Light Beige background */
}

.resale-philosophy h2 {
    /* Default centered h2 style is likely fine */
}

.resale-philosophy p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.resale-categories {
    background-color: #fff; /* Keep white background */
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-item {
    background-color: #fff; /* Keep white background */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    text-align: center;
}

/* Style assuming specific image filenames are used */
.category-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.category-item h3 {
    font-size: 1.3rem;
    padding: 15px 15px 5px 15px;
    margin-bottom: 0.5em;
}

.category-item p {
    font-size: 0.95rem;
    padding: 0 15px 20px 15px;
    margin-bottom: 0;
    color: #555;
}

.visit-reminder {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.resale-categories .button {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* --- Records Page Specific Styles (`records.html`) --- */
.music-vision {
    background-color: #D9D9C5; /* New: Light Beige background */
}

.music-vision h2 {
    /* Default centered h2 style is likely fine */
}

.music-vision ul {
    list-style: disc;
    padding-left: 25px;
    max-width: 750px;
    margin: 20px auto 30px auto;
}

.music-vision li {
    margin-bottom: 0.8em;
}

.music-vision h3 {
    text-align: center;
    margin-top: 30px;
}

.music-vision p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Basic styling for inline images (placeholder-records.jpg) */
.inline-image {
    max-width: 400px;
    height: auto;
    border-radius: 6px;
    margin: 10px auto 30px auto;
    display: block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- About Page Specific Styles (`about.html`) --- */
.about-content {
    background-color: #D9D9C5; /* New: Light Beige background */
}

.about-content h2 {
    text-align: left;
    margin-bottom: 0.5em;
}

.about-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 1em;
    margin-bottom: 1.5em;
}

.about-content li {
    margin-bottom: 0.6em;
}

/* Style for profile image (placeholder-storefront.jpg for team) */
.profile-image {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
    max-width: 300px;
    border-radius: 6px; /* Changed to square/rounded corner, not full circle */
}

/* Clearfix for floated image */
.about-content::after {
    content: "";
    clear: both;
    display: table;
}

/* --- Contact Page Specific Styles (`contact.html`) --- */
.contact-details {
    background-color: #D9D9C5; /* New: Light Beige background */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 0.8em;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 1.2em;
    line-height: 1.7;
}

.contact-info .address, .contact-info .hours {
    font-style: normal;
}

.contact-info strong {
    color: #4A624A; /* New: Dark Green */
}

.contact-map h2 {
    text-align: left;
    margin-bottom: 0.8em;
    font-size: 1.6rem;
}

/* Style the map container (now using iframe) */
.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 4px;
}

/* --- Social Link Styles --- */
.social-links {
    margin-top: 20px; /* Space above social links */
    text-align: center; /* Center in footer */
}

.contact-social-links {
     margin-top: 20px;
     /* Default alignment might be left in contact info block, adjust if needed */
}


.social-links a,
.contact-social-links a {
    display: inline-block; /* Arrange links horizontally */
    margin: 0 10px; /* Space between icons */
    font-size: 1.8rem; /* Icon size */
    color: #E6B34E; /* New: Golden Yellow for icons */
    transition: color 0.2s ease;
}

.social-links a:hover,
.contact-social-links a:hover {
    color: #D39C4A; /* Darker Golden Yellow on hover */
    text-decoration: none; /* Ensure no underline */
}


/* ---=== Media Queries for Responsiveness ===--- */
@media (max-width: 768px) {
    body {
        /* Increased padding-top for mobile to clear the taller, stacked header */
        /* Trying a larger value again */
        padding-top: 220px; /* Adjust this value if header is still crowded */
    }

    .site-header {
        padding: 10px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 2rem;
    }

     h2 {
        font-size: 1.7rem;
    }

     h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .feature-image {
        height: 180px;
    }

    .profile-image {
        float: none; /* Unfloat image on small screens */
        margin: 0 auto 20px auto; /* Center image when unfloated */
        border-radius: 6px; /* Keep square/rounded corners on mobile */
    }

    .about-content h2 {
        text-align: center;
    }

    .social-links a,
    .contact-social-links a {
        font-size: 1.5rem; /* Slightly smaller icons on mobile */
        margin: 0 8px;
    }

}
/* Add more media queries or adjustments below if needed for specific screen sizes */