/* Reset and Base Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Header Navbar */
header {
    /* 1. Add a dark overlay gradient so your gold text stays easy to read */
    /* 2. Link your new downloaded image (adjust path if it's inside an images folder) */
    background: linear-gradient(rgba(11, 19, 37, 0.75), rgba(11, 19, 37, 0.85)), 
                url('shop-bg.png') no-repeat center center/cover;
    
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
header .logo {
    font-family: 'Cinzel', serif;
    color: #dfb76c;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

header nav a:hover { color: #dfb76c; }

/* Hero Wrapper */
.hero {
    height: 80vh; /* Takes up 80% of the screen height */
    /* Dark gradient overlay + your custom shop image */
    background: linear-gradient(rgba(11, 19, 37, 0.6), rgba(11, 19, 37, 0.8)), 
                url('shop-bg.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-content p {
    color: #d1d5db;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #dfb76c;
    color: #0b1325;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid #dfb76c;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #dfb76c;
}

/* Collections Global CSS */
.collections-section {
    padding: 100px 10%;
    background-color: #ffffff;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: #0b1325;
    text-align: center;
    margin-bottom: 10px;
}

.underline {
    width: 50px;
    height: 3px;
    background-color: #dfb76c;
    margin: 0 auto 60px auto;
}

.tier-divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 70px 0;
}

/* Collection Tiers Setup */
.collection-tier {
    margin-bottom: 40px;
}

.tier-header {
    margin-bottom: 35px;
}

.tier-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #0b1325;
    margin-bottom: 8px;
}

.tier-header p {
    color: #666;
    max-width: 700px;
    font-size: 1rem;
}

/* Grid Framework */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.grid-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.grid-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.grid-item p {
    padding: 15px;
    font-weight: 600;
    color: #0b1325;
    font-size: 0.9rem;
    text-align: center;
}

/* Full Package Special Tier Showcase */
.full-package-tier {
    background-color: #f9fafb;
    padding: 40px;
    border-left: 4px solid #dfb76c;
}

.badge {
    display: inline-block;
    background: #dfb76c;
    color: #0b1325;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 10px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.package-image {
    flex: 1;
    min-width: 280px;
}

.package-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.package-details {
    flex: 1.2;
    min-width: 300px;
}

.package-details h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #0b1325;
    margin-bottom: 15px;
}

.package-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-details ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.package-details ul li strong {
    color: #0b1325;
}

/* Contact Area Styles */
.contact-section {
    padding: 90px 10%;
    background-color: #0b1325;
    color: #ffffff;
}

.contact-section h2 { color: #ffffff; }

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    color: #dfb76c;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #9ca3af;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: inherit;
    margin-bottom: 15px;
    border-radius: 4px;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #dfb76c;
}

footer {
    background-color: #060a14;
    padding: 25px;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
}

/* Media Breakpoints */
@media(max-width: 768px) {
    header { padding: 20px 5%; }
    .hero-content h1 { font-size: 2.4rem; }
    .collections-section, .contact-section { padding: 60px 5%; }
    .full-package-tier { padding: 20px; }
}