/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --secondary-light: #FFD700;
    --secondary-dark: #B8860B;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-light: #f5f5f5;
    --gray-dark: #666666;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    height: var(--header-height);
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.phone-link:hover {
    color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Active state */
.hamburger--active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger--active .hamburger-inner::before {
    transform: translateY(10px) rotate(0);
    opacity: 0;
}

.hamburger--active .hamburger-inner::after {
    transform: translateY(-10px) rotate(-90deg);
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.slide-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-text {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.slide-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slide-text h2 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .swiper {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-text h2 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .logo img {
        max-height: 80px;
    }
    
    .swiper {
        height: 50vh;
        min-height: 300px;
    }
    
    .slide-text {
        padding: 0 1rem;
    }
    
    .slide-text h2 {
        font-size: 1.75rem;
    }
    
    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 80px 20px 40px;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .contact-info {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .hamburger {
        order: 1;
    }
    
    .logo {
        order: 0;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
}

/* Ensure media elements are responsive */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive media in product cards */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.8;
}

.swiper-pagination-bullet {
    background: var(--text-light) !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1 !important;
}

/* Ensure Swiper is touch-friendly on mobile */
.swiper-container {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fix for iOS scrolling */
.swiper-container {
    -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on swipe */
.swiper-slide {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.welcome-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.gold {
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.enquire-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.enquire-btn:hover {
    background: var(--secondary-light);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.category {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.product-info h3 {
    margin: 0.5rem 0;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
}

/* Shopping Experience */
.shopping-experience {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.shopping-experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin: 1rem 0;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray-600);
}

.business-hours h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-hours p {
    color: var(--gray-600);
    margin-bottom: 5px;
}

.contact-form-container {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--gray-400);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: #FBDF22;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ECE8E8;
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-top: 40px;
}

.contact-cta h2 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-cta p {
    color: var(--gray-600);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #FFFFFF;
}

.whatsapp-cta,
.call-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.whatsapp-cta {
    background-color: #25D366;
    color: white;
}

.call-cta {
    background-color: #FFFFFF;
    color: #000000;
}

.whatsapp-cta:hover,
.call-cta:hover {
    transform: translateY(-2px);
    color: #000000;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form-container {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-cta,
    .call-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 120px 0 80px;
    background-color: var(--gray-light);
}

.gallery-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
}

.call-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Styles for Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 100px 0 60px;
    }

    .gallery-section h1 {
        font-size: 2rem;
    }

    .category-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .overlay-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .enquire-btn,
    .call-btn {
        width: 100%;
        justify-content: center;
    }
} 
