/* 
   Bombay Royals - Premium Clothing Brand
   New Color Palette:
   - Tea Green: #e6f8b2
   - Brunswick Green: #294936
   - French Gray: #b4b8c5
   - Liver: #6c534e
   - Raw Umber: #8e6e53
*/

/* Base Styles */
:root {
    --tea-green: #e6f8b2;
    --brunswick-green: #294936;
    --french-gray: #b4b8c5;
    --liver: #6c534e;
    --raw-umber: #8e6e53;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --border-color: rgba(180, 184, 197, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--liver);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brunswick-green);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--brunswick-green);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--tea-green);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--raw-umber);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--brunswick-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--raw-umber);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--brunswick-green);
    border: 2px solid var(--brunswick-green);
}

.btn-outline:hover {
    background-color: var(--brunswick-green);
    color: var(--white);
}

/* Special style for hero section's outline button */
.hero .btn-outline {
    background-color: transparent;
    color: var(--tea-green);
    border: 2px solid var(--tea-green);
}

.hero .btn-outline:hover {
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    height: 100vh;
    background-color: var(--brunswick-green);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .logo h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--tea-green);
    letter-spacing: 2px;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-nav ul li {
    margin-bottom: 5px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--french-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background-color: rgba(230, 248, 178, 0.1);
    color: var(--tea-green);
    border-left-color: var(--tea-green);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sidebar-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-footer .social-links a:hover {
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    transform: translateY(-3px);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    width: calc(100% - 280px);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left .logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brunswick-green);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--liver);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brunswick-green);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--brunswick-green);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    color: var(--brunswick-green);
    font-size: 1.1rem;
    position: relative;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(41, 73, 54, 0.8), rgba(41, 73, 54, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e6f8b2" fill-opacity="0.05"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--tea-green);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background-color: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    transition: all 0.3s ease;
}

.category-details h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.5rem;
}

.category-link {
    color: var(--tea-green);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Collections Section */
.collections {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.collection-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--liver);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brunswick-green);
    transition: width 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--brunswick-green);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.tag {
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

.tag.new {
    background-color: var(--tea-green);
    color: var(--brunswick-green);
}

.tag.sale {
    background-color: var(--raw-umber);
    color: var(--white);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: bottom 0.3s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--brunswick-green);
    border: 1px solid var(--brunswick-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: var(--brunswick-green);
    color: var(--white);
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-price {
    font-weight: 600;
    color: var(--brunswick-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--liver);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Bridal Section */
.bridal-section {
    padding: 80px 0;
    background-color: var(--white);
}

.bridal-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bridal-text {
    flex: 1;
}

.bridal-text .section-title {
    text-align: left;
}

.bridal-text .section-title::after {
    left: 0;
    transform: none;
}

.bridal-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bridal-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--tea-green);
    z-index: -1;
    border-radius: 8px;
}

/* Groom Section */
.groom-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.groom-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
}

.groom-text {
    flex: 1;
}

.groom-text .section-title {
    text-align: left;
}

.groom-text .section-title::after {
    left: 0;
    transform: none;
}

.groom-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.groom-image::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    left: -15px;
    bottom: -15px;
    border: 1px solid var(--tea-green);
    z-index: -1;
    border-radius: 8px;
}

/* Accessories Section */
.accessories {
    padding: 80px 0;
    background-color: var(--white);
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.accessory-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.accessory-image {
    height: 250px;
    overflow: hidden;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accessory-card:hover .accessory-image img {
    transform: scale(1.1);
}

.accessory-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--brunswick-green);
    border-top: 1px solid var(--border-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brunswick-green);
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--brunswick-green);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.contact-form {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brunswick-green);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--brunswick-green);
    color: var(--white);
    padding: 70px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--tea-green);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--tea-green);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--tea-green);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--french-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--tea-green);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--french-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--tea-green);
}

/* Newsletter Container Styles */
.newsletter-container {
    background-color: var(--light-gray);
    padding: 0;
    margin: 60px 0 0;
    position: relative;
}

.newsletter-section {
    padding: 0;
    position: relative;
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--brunswick-green);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    top: -30px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--tea-green);
}

.newsletter-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 12px 20px;
    font-weight: 600;
    background-color: var(--tea-green);
    color: var(--brunswick-green);
    border: none;
}

.newsletter-form button:hover {
    background-color: var(--white);
}

.form-consent {
    font-size: 12px;
    opacity: 0.8;
}

.form-consent a {
    color: var(--tea-green);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .menu-toggle {
        display: block;
    }
    .close-sidebar {
        display: block;
    }
    .bridal-content,
    .groom-content {
        flex-direction: column;
    }
    .bridal-text .section-title,
    .groom-text .section-title {
        text-align: center;
    }
    .bridal-text .section-title::after,
    .groom-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .bridal-image::after,
    .groom-image::after {
        display: none;
    }
    .main-nav {
        display: none;
    }
    .header-left .logo {
        display: none;
    }
    
    /* Newsletter Responsive Styles */
    .newsletter-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-text, 
    .newsletter-form {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .footer-column h3 {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-icons {
        gap: 15px;
    }
    .icon-link {
        font-size: 18px;
    }
    
    /* Newsletter Responsive Styles */
    .newsletter-wrapper {
        top: 0;
        margin: 30px 15px;
        border-radius: 8px;
    }
    
    .newsletter-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .tab-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .tab-btn {
        padding: 8px 15px;
    }
    .tab-btn::after {
        display: none;
    }
    .tab-btn.active {
        background-color: var(--brunswick-green);
        color: var(--white);
        border-radius: 4px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    
    /* Newsletter Responsive Styles */
    .newsletter-wrapper {
        padding: 25px 15px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .form-consent {
        font-size: 11px;
    }
} 