/*
Theme Name: N Hermanas Luxury
Theme URI: https://www.nhermanas.co.za
Author: N Hermanas
Author URI: https://www.nhermanas.co.za
Description: Premium luxury WordPress theme for N Hermanas Catering & Decor.
Version: 1.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: nhermanas-luxury
*/

/* ==========================================
   GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{

    --primary:#0F3D2E;
    --secondary:#BA9047;
    --accent:#D4AF37;

    --white:#ffffff;
    --offwhite:#F8F6F2;

    --text:#555555;
    --heading:#222222;

    --container:1320px;

    --radius:12px;

    --transition:.35s ease;

}

/* ==========================================
   RESET
========================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
font-size:16px;
color:var(--text);
background:#fff;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:min(92%,1320px);
margin:auto;

}