@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Warm Orange & Blue Theme (Light) */
  --primary-color: #E67E22; /* Carrot Orange */
  --secondary-color: #D35400; /* Pumpkin */
  --accent-color: #F39C12; /* Sun Yellow */
  --light-color: #FFF8E1; /* Light Cream */
  --dark-color: #2C3D4F; /* Dark Blue */
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
  --hover-color: #CF6D17;
  --background-color: #FFFFFF;
  --text-color: #4B5563;
  --border-color: rgba(230, 126, 34, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(44, 61, 79, 0.1);
  --highlight-color: #3498DB; /* Complimentary Blue */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Mobile Menu V2 */
#nav-toggle-v2:checked ~ .mobile-menu {
    display: block;
}

/* Specific Design Elements V2 */
input:focus, textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15) !important;
}

.text-underline:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 4px;
}