﻿/* =========================================
   CORE VARIABLES & BASICS
   ========================================= */
:root {
    --gold: #D4AF37;
    --gold-dark: #aa8c2c;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b4932a 100%);
    --black: #000000;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* Essential for fixed navbar */
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* =========================================
   NAVBAR & HERO
   ========================================= */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 2px solid var(--gold);
}

.carousel-item {
    height: 85vh; /* Fixed height for Hero */
    min-height: 500px;
    background: #000;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }

/* =========================================
   SECTION 1: CIRCLES
   ========================================= */
.circle-section {
    padding: 80px 0;
    background: #fff;
}

.circle-card {
    width: 280px;
    height: 280px; /* Fixed size */
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

    .circle-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image fills circle */
    }

    .circle-card:hover {
        transform: scale(1.05);
    }

/* =========================================
   SECTION 2: SQUARES
   ========================================= */
.square-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.square-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates perfect square (1:1 Aspect Ratio) */
    overflow: hidden;
    border: 1px solid #ddd;
}

    .square-box img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .square-box:hover img {
        transform: scale(1.1);
    }

/* =========================================
   SECTION 3: RECTANGLES
   ========================================= */
.rect-section {
    padding: 80px 0;
}

.rect-box {
    width: 100%;
    height: 400px; /* Fixed height for rectangles */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid var(--gold);
}

    .rect-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* =========================================
   COMPONENTS
   ========================================= */
.text-gold {
    color: var(--gold) !important;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
}


/* =========================================
   7. FOOTER SECTIONS (Updated)
   ========================================= */
.footer-dark {
    background: #050505;
    color: #bbb;
    padding: 60px 0 20px 0;
    border-top: 5px solid var(--gold);
    margin-top: auto;
}

    .footer-dark h4, .footer-dark h5 {
        color: #fff;
        font-family: 'Playfair Display', serif;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    /* Footer Links */
    .footer-dark ul {
        list-style: none;
        padding: 0;
    }

        .footer-dark ul li {
            margin-bottom: 12px;
        }

            .footer-dark ul li a {
                color: #bbb;
                text-decoration: none;
                transition: 0.3s;
                font-size: 0.95rem;
            }

                .footer-dark ul li a:hover {
                    color: var(--gold);
                    padding-left: 5px; /* Slight slide effect */
                }

    /* Social Icons */
    .footer-dark .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #222;
        color: #fff;
        border-radius: 50%;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

        .footer-dark .social-icons a:hover {
            background: var(--gold);
            color: #000;
            transform: translateY(-3px);
        }

/* Copyright Bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}
