/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f1e9, #e6d9c6);
}

/* Luxury Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: #1a1a1a;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #d4af37;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.primary-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: 2px solid #d4af37;
}

.primary-btn:hover {
    background: #1a1a1a;
    color: #d4af37;
}

.secondary-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.secondary-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.header__menu--items {
	list-style: none;
	position: relative;
}

.header__menu--items:hover .header__sub--menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
}

.header__sub--menu {
	position: absolute;
	z-index: 9;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 220px;
	margin-top: 20px;
	padding: 10px;
	list-style: none;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.header__sub--menu__items {
	margin: 12px;
}

.header__sub--menu__link {
	display: block;
	color: #333;
	text-decoration: none;
}

.header__sub--menu__link i {
    margin-right: 12px; 
    vertical-align: middle;
    font-size: 20px; 
}

.header__sub--menu__link:hover {
	color: #d4af37;
}

.header__menu--items > a {
	color: white;
	text-decoration: none;
}

/* loader */
#global-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.whirly-loader {
	width: 50px;
	height: 50px;
	border: 5px solid #ccc;
	border-top: 5px solid #d4af37;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.mobile-section {
    display: none;
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1542744173-05336fcc7ad4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero .section-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.hero .hero-btn {
    background: #d4af37;
    color: #1a1a1a;
    padding: 8px 18px; /* Explicitly reduced size */
    font-size: 14px;
    display: inline-flex; /* Ensures proper alignment */
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.benefit i {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit p {
    color: #555;
    font-size: 16px;
}

/* Usage Section */
.usage-section {
    padding: 80px 0;
}

.usage-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.usage {
    padding: 20px;
}

.usage-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.usage h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.usage p {
    color: #555;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.contact-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.contact-section .section-subtitle {
    color: #d4af37;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form input[type="number"]::-webkit-inner-spin-button,
.contact-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-form textarea {
    resize: vertical;
}

.form-btn {
    background: #d4af37;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: #1a1a1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
}

.footer-column p a {
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.payment-methods img {
    height: 30px;
}

/* Mobile Optimization and Hamburger Menu */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        font-size: 24px;
    }

    .nav-toggle-label {
        display: block;
    }

    header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #1a1a1a;
        padding: 20px 0;
    }

    #nav-toggle:checked ~ nav {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-actions {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .section-subtitle {
        font-size: 16px;
    }

    .hero .hero-btn {
        padding: 8px 16px; /* Slightly smaller on mobile */
        font-size: 13px;
    }

    /* Benefits */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-section h2 {
        font-size: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Usage */
    .usage-section {
        padding: 60px 0;
    }

    .usage-section h2 {
        font-size: 30px;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .usage-image {
        height: 120px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-form {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero .section-subtitle {
        font-size: 14px;
    }

    .hero .hero-btn {
        padding: 6px 14px; /* Even smaller for very small screens */
        font-size: 12px;
    }

    .benefits-section h2,
    .usage-section h2,
    .contact-section h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .benefit h3,
    .usage h3 {
        font-size: 20px;
    }

    .benefit p,
    .usage p {
        font-size: 14px;
    }

}