    :root {
      --base: #fdf9ed;
      --accent-dark: rgba(84, 55, 32, 0.95);
      --gold1: #d4af37;
      --gold2: #ffdf6b;
      --nav-height: 70px;
      --subhead: #4a3a33;
      --head: #3d2a22;
      --text: #7a4f33;
      --button: #7a4f33;
      --buttonhover: #a7714e;
    }
/* Additional styles for contact page */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
      
        .contact-form-container h3 {
            color: var(--head);
            font-family: 'Cinzel', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-form-container h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--head);
        }
        
        .contact-form-container {
            color:var(--subhead);
            background-color: var(--base);
            border-radius: 8px;
            box-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--gold1);
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .error-input {
            border-color: var(--danger-color);
        }
        
        .error-message {
            color: var(--danger-color);
            font-size: 0.85rem;
            margin-top: 5px;
            display: block;
        }
        
        .success-message {
            background-color: #d4edda;
            color: var(--subhead);
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-info {
            background-image:url("../src/csec.png");
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 8px;
            box-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
            padding: 30px;
            color: var(--text);
        }
        
        .contact-info h3 {
            font-family: 'Cinzel', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-info h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--head);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-info-item .content h4 {
            font-family: 'Cinzel', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .contact-info-item .content p {
            color: var(--subhead);
        }
        
        .store-hours {
            margin-top: 10px;
        }
        
        .store-hours li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .social-links {
            margin-top: 30px;
        }
        
        .social-links h4 {
            font-family: 'Cinzel', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .social-links .social-icons {
            display: flex;
        }
        
        .social-links .social-icon {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .social-links .social-icon:hover {
            background-color: var(--button);
            color: var(--base);
        }
        
        .map-container {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
            height: 200px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        @media screen and (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            .section-title{
                margin-top: 70px;
            }
        }
            :root {
      --base: #fdf9ed;
      --accent-dark: rgba(84, 55, 32, 0.95);
      --gold1: #d4af37;
      --gold2: #ffdf6b;
      --nav-height: 70px;
      --subhead: #4a3a33;
      --head: #3d2a22;
      --text: #7a4f33;
      --button: #7a4f33;
      --buttonhover: #a7714e;
          --transition: all 0.3s ease;

    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
  
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--gold1);
    transition: var(--transition);
}

a:hover {
    color: #ffffff;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cinzel', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--head);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--head);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--button);
    color:var(--base);
        border: 0px;

}

.btn-primary:hover {
    background-color:var(--buttonhover);
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
