/* Import luxury font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&display=swap');

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../images/black-marble.jpg') center/cover fixed;
    color: #fff;
    line-height: 1.6;
}

.page-overlay {
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    width: 100%;
    padding: 40px 0;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}
/* Section Styling */


section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    background: rgba(0,0,0,0.55);
    backdrop-filter: none;
    border-radius: 10px;
}

h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
	font-family: 'Playfair Display', serif;
}

h21{
	color: rgba(212,175,55);
    font-family: 'Cinzel', serif;	
	font-weight: 200;
    letter-spacing: 1px;
	font-size: 6rem;
   }

h11{
	color: rgba(249, 246, 238);
    font-family: 'Cinzel', serif;	
	font-weight: 200;
    letter-spacing: 1px;
	font-size: 4rem;
   }


goldheader{
	color: rgba(212,175,55);
    font-family: 'Playfair Display', serif;	
	font-weight: 600;
    letter-spacing: 1px;
	font-size: 2.1rem;
   }

p {
    font-size: 1.1rem;
    opacity: 0.9;
}

img {
    max-width: 100%;
    border-radius: 6px;
}

/* Section-break images */
.feature-image,
.section-break-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}
.main-menu {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
visited
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.4);
}
/* Reset menu link states so they return to normal after click */
.main-menu a,
.main-menu a:visited,
.main-menu a:active {
    color: #d4af37; /* your original gold colour */
}

/* Highlight only the CURRENT page */
.main-menu a.active {
    color: #fff !important;
}

/* ========================================= */
/* MAIN MENU (renamed from menu-bar) */
/* ========================================= */

.main-menu {
    background: #0d0d0d;
    padding: 15px 0;
    width: 100%;
    z-index: 10;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-menu li {
    display: inline-block;
}

.main-menu a {
    position: relative;
    color: #d4af37;
    text-decoration: none;
    font-family: 'Poppins', serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 4px;
}
/* Reset menu link states so they return to normal after click */
.main-menu a,
.main-menu a:visited,
.main-menu a:active {
    color: #d4af37; /* your original gold colour */
}

/* Highlight only the CURRENT page */
.main-menu a.active {
    color: #fff !important;
}


/* GOLD UNDERLINE ANIMATION */
.main-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-menu a:hover::after {
    width: 60%;
}

/* MOBILE MENU FIX FOR 4 ITEMS */
@media (max-width: 768px) {
    .main-menu ul {
        justify-content: space-between;
        gap: 0;
        padding: 0 10px;
    }

    .main-menu li {
        flex: 1;
        text-align: center;
    }

    .main-menu a {
        font-size: 0.9rem;
        padding: 0 4px;
        white-space: nowrap;
    }
}

.content-container {
    max-width: 1200px;   /* match your Our Story block */
    margin: 0 auto;      /* centre it */
    padding: 0 20px;     /* optional */
}

/* SUCCESS PAGE */
.contact-success {
    min-height: 80vh;               /* fills most of the screen */
    display: flex;
    justify-content: center;        /* centre horizontally */
    align-items: center;            /* centre vertically */
    text-align: center;
    padding: 40px 0;
}



/* ========================================= */
/* SUCCESS PAGE */
/* ========================================= */

.contact-success {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* GOLD CIRCLE */
.success-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: transparent;
    box-sizing: border-box;
        margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ANIMATED GOLD TICK */
.success-tick {
    width: 60px;
    height: 30px;
    border-left: 6px solid #d4af37;
    border-bottom: 6px solid #d4af37;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    animation: tickPop 0.6s ease forwards 0.3s;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.7));
}

@keyframes tickPop {
    0% { transform: rotate(-45deg) scale(0); }
    60% { transform: rotate(-45deg) scale(1.2); }
    100% { transform: rotate(-45deg) scale(1); }
}

.contact-success h2 {
    color: #fff;
    margin-bottom: 10px;
}

.contact-success p {
    font-size: 1.2rem;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.6);
    color: #aaa;
    font-size: 0.9rem;
    backdrop-filter: blur(3px);
}

.site-container {
    max-width: 1200px;   /* match your Our Story block width */
    margin: 0 auto;      /* centre it */
    padding: 0 20px;     /* optional, adds breathing room */
}

/* ============================= */
/* RESPONSIVE AUTO-FIT THUMBNAILS */
/* ============================= */

.gallery-wrapper {
    width: min(90%, 1200px);
    margin: 40px auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 20px;
    justify-items: center;
}

.gallery-grid a {
    display: block;
    padding: 6px;
    background: rgba(0,0,0,0.35);
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.4);
    transition: 0.3s ease;
    width: 100%;
    max-width: 180px; /* tile shrinks to image size */
}

.gallery-grid img {
    width: 100%;
    height: auto;          /* no cropping */
    object-fit: contain;   /* true thumbnail */
    border-radius: 6px;
}

.gallery-grid a:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
}
